make compatible with caddy reverse proxy for local https

This commit is contained in:
Johannes Heuel
2023-03-03 19:56:01 +01:00
parent ac27cba766
commit da5d1edaa7
12 changed files with 738 additions and 20 deletions

View File

@@ -50,3 +50,21 @@ services:
ME_CONFIG_MONGODB_ADMINUSERNAME: jheuel
ME_CONFIG_MONGODB_ADMINPASSWORD: bla
ME_CONFIG_MONGODB_URL: mongodb://jheuel:bla@mongo:27017/
minio:
image: quay.io/minio/minio
command: server /data --console-address ":9001"
ports:
- 9000:9000
- 9001:9001
environment:
MINIO_ROOT_USER: miliminioadmin
MINIO_ROOT_PASSWORD: miliminioadmin
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
hostname: minio
volumes:
- ./s3_data:/data