Added multiple services
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user