Added multiple services

This commit is contained in:
2023-02-28 17:24:43 +00:00
parent ea40c69ba4
commit 0236bdb0ae
23 changed files with 439 additions and 12 deletions
+26
View File
@@ -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