mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
Move desktop into apps/desktop
This commit is contained in:
1
apps/desktop/scripts/dev/.gitignore
vendored
Normal file
1
apps/desktop/scripts/dev/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
data
|
||||
19
apps/desktop/scripts/dev/docker-compose.yml
Normal file
19
apps/desktop/scripts/dev/docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
minio:
|
||||
image: minio/minio
|
||||
command: server /data --console-address ":9001"
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
# environment:
|
||||
# MINIO_ROOT_USER: minioadmin
|
||||
# MINIO_ROOT_PASSWORD: minioadmin
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
||||
interval: 30s
|
||||
timeout: 20s
|
||||
retries: 3
|
||||
volumes:
|
||||
- ./data:/data
|
||||
Reference in New Issue
Block a user