1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-23 22:43:00 +02:00
bitwarden-browser/apps/desktop/scripts/dev/docker-compose.yml
2022-05-05 17:20:34 +02:00

20 lines
434 B
YAML

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