Make web administration ports more consistent

This commit is contained in:
Matthew Lopez 2023-12-21 12:35:06 -05:00
parent f39fba8037
commit b8d6f18fac
No known key found for this signature in database
GPG Key ID: 302A6EE3D63B7E0E
3 changed files with 8 additions and 6 deletions

View File

@ -83,7 +83,7 @@ services:
restart: unless-stopped
ports:
# Web interface
- 127.0.0.1:8090:8081
- 127.0.0.1:8082:8081
networks:
internal:
dns: 172.20.0.200
@ -98,7 +98,7 @@ services:
restart: unless-stopped
ports:
# Web console
- 127.0.0.1:9090:9090
- 127.0.0.1:8083:8083
volumes:
- type: volume
source: minio-s3-data
@ -109,7 +109,7 @@ services:
env_file:
- ./environment/minio.env
- ./environment/minio.local.env
command: server /data --console-address ":9090"
command: server --console-address ":8083"
redis:
image: redis:alpine
@ -135,7 +135,7 @@ services:
restart: unless-stopped
ports:
# MailDev web UI
- 127.0.0.1:1080:1080
- 127.0.0.1:8084:8084
volumes:
- type: volume
source: maildev-mail
@ -175,7 +175,7 @@ services:
restart: unless-stopped
ports:
# For the Adminer web interface
- 127.0.0.1:8091:8080
- 127.0.0.1:8085:8080
networks:
internal:
dns: 172.20.0.200

View File

@ -1,3 +1,3 @@
MAILDEV_SMTP_PORT=1025
MAILDEV_WEB_PORT=1080
MAILDEV_WEB_PORT=8084
MAILDEV_MAIL_DIRECTORY=/data

View File

@ -1,2 +1,4 @@
MINIO_VOLUMES=/data
MINIO_DOMAIN=minio
MINIO_ROOT_USER=minio_pretendo
MINIO_BROWSER_REDIRECT=false