init
All checks were successful
docker-build / Build image (push) Successful in 48s

This commit is contained in:
2025-10-26 12:34:36 +07:00
commit 22431d5541
10 changed files with 267 additions and 0 deletions

18
docker-compose.yaml Normal file
View File

@@ -0,0 +1,18 @@
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