You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
574 B
17 lines
574 B
minio:
|
|
image: 'minio/minio:latest'
|
|
ports:
|
|
- '${FORWARD_MINIO_PORT:-9000}:9000'
|
|
- '${FORWARD_MINIO_CONSOLE_PORT:-8900}:8900'
|
|
environment:
|
|
MINIO_ROOT_USER: 'sail'
|
|
MINIO_ROOT_PASSWORD: 'password'
|
|
volumes:
|
|
- 'sailminio:/data/minio'
|
|
networks:
|
|
- sail
|
|
command: minio server /data/minio --console-address ":8900"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
retries: 3
|
|
timeout: 5s
|