Try to debug build
This commit is contained in:
25
stack docker/s3.yaml
Normal file
25
stack docker/s3.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
minio:
|
||||
image: bitnami/minio:latest
|
||||
container_name: minio
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
networks:
|
||||
- s3-net
|
||||
volumes:
|
||||
- /data/minio:/bitnami/minio/data
|
||||
env_file: stack.env
|
||||
environment:
|
||||
- MINIO_ROOT_USER=${MINIO_ACCESS_KEY}
|
||||
- MINIO_ROOT_PASSWORD=${MINIO_SECRET_KEY}
|
||||
- MINIO_DEFAULT_BUCKETS=${MINIO_DEFAULT_BUCKETS}
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
||||
interval: 30s
|
||||
timeout: 20s
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
s3-net:
|
||||
Reference in New Issue
Block a user