27 lines
672 B
YAML
27 lines
672 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
minio:
|
|
container_name: minio
|
|
image: quay.io/minio/minio:RELEASE.2022-06-03T01-40-53Z
|
|
command: server --console-address ":80" /data
|
|
environment:
|
|
MINIO_ROOT_USER: 84yrXNNAM6qJF9ZDfvhtkQke9iJ7sJivHxapUgVcber3QmZZSt
|
|
MINIO_ROOT_PASSWORD: 44w8exbgc5RZkKTEo5oRsCLGGba4raBKBXXySs83ebeae5cnun
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
hostname: minio
|
|
restart: always
|
|
volumes:
|
|
- /mnt/SSD500/docker/minio:/data
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true
|
|
|