mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
20 lines
434 B
YAML
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
|