28 lines
655 B
YAML
Executable File
28 lines
655 B
YAML
Executable File
services:
|
|
minio:
|
|
image: minio/minio:latest
|
|
container_name: minio
|
|
restart: unless-stopped
|
|
ports:
|
|
- '9000:9000'
|
|
- '9001:9001'
|
|
networks:
|
|
- nice-net
|
|
environment:
|
|
- MINIO_ROOT_USER=insiinc
|
|
- MINIO_ROOT_PASSWORD=Letusdoit000
|
|
volumes:
|
|
- ./volumes/minio/data:/data
|
|
command: server /data --console-address ":9001" --address ":9000"
|
|
healthcheck:
|
|
test: ['CMD', 'curl', '-f', 'http://localhost:9000/minio/health/live']
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
start_period: 60s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1G
|
|
cpus: '1.0'
|