All checks were successful
docker-build / Build image (push) Successful in 48s
19 lines
364 B
YAML
19 lines
364 B
YAML
services:
|
|
minio:
|
|
build: .
|
|
restart: always
|
|
container_name: minio
|
|
command: server --console-address ":9001" /storage
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- "./storage:/storage"
|
|
ports:
|
|
- 9000:9000
|
|
- 9001:9001
|
|
healthcheck:
|
|
test: ["CMD", "mc", "ready", "local"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|