mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-22 20:06:18 +02:00
22 lines
452 B
YAML
22 lines
452 B
YAML
services:
|
|
minio:
|
|
image: minio/minio:latest
|
|
ports:
|
|
- "8987:9000"
|
|
- "8988:9001"
|
|
environment:
|
|
MINIO_ROOT_USER: minioadmin
|
|
MINIO_ROOT_PASSWORD: minioadmin
|
|
command: server /data --console-address ":9001"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- minio_data:/data
|
|
|
|
volumes:
|
|
minio_data:
|
|
|