We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e983e4b commit 87174e0Copy full SHA for 87174e0
compose/deps.yaml
@@ -45,7 +45,7 @@ services:
45
MINIO_ROOT_USER: ${OBB_S3_ACCESS_KEY_ID}
46
MINIO_ROOT_PASSWORD: ${OBB_S3_SECRET_ACCESS_KEY}
47
ports:
48
- - "9000:9000"
+ - "${MINIO_API_PORT:-9000}:9000"
49
volumes:
50
- "/etc/localtime:/etc/localtime:ro"
51
- '${PWD}/data/minio:/data'
@@ -73,8 +73,7 @@ services:
73
image: mailhog/mailhog:v1.0.1
74
restart: always
75
76
- - "8025:8025" # Web UI
77
- - "1025:1025" # SMTP
+ - "${MAILHOG_WEB_PORT:-8025}:8025" # Web UI
78
79
- /etc/localtime:/etc/localtime:ro
80
healthcheck:
example.env
@@ -1,4 +1,6 @@
1
OB_WEB_PORT=8080
2
+MAILHOG_WEB_PORT=8025
3
+MINIO_API_PORT=9000
4
5
OBB_LOG_LEVELS=error,warn,log
6
0 commit comments