updated style

This commit is contained in:
callum5892
2026-03-17 02:07:55 +00:00
parent c797a7cba1
commit 02896d4126
3 changed files with 39 additions and 6 deletions

View File

@@ -7,10 +7,10 @@ services:
env_file:
- .env
environment:
MINIO_ENDPOINT: minio
MINIO_PORT: 9000
MINIO_USE_SSL: "false"
PORT: 3000
MINIO_ENDPOINT: ${MINIO_ENDPOINT:-minio}
MINIO_PORT: ${MINIO_PORT:-9000}
MINIO_USE_SSL: ${MINIO_USE_SSL:-false}
PORT: ${PORT:-3000}
ports:
- "3000:3000"
depends_on:
@@ -27,7 +27,6 @@ services:
MINIO_ROOT_USER: ${MINIO_ACCESS_KEY:-minioadmin}
MINIO_ROOT_PASSWORD: ${MINIO_SECRET_KEY:-minioadmin}
ports:
- "9000:9000"
- "9001:9001"
restart: unless-stopped
volumes: