diff --git a/compose.yml b/compose.yml index b7e3c9d..d9aaff6 100644 --- a/compose.yml +++ b/compose.yml @@ -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 diff --git a/environment/maildev.env b/environment/maildev.env index bc4edc5..425678d 100644 --- a/environment/maildev.env +++ b/environment/maildev.env @@ -1,3 +1,3 @@ MAILDEV_SMTP_PORT=1025 -MAILDEV_WEB_PORT=1080 +MAILDEV_WEB_PORT=8084 MAILDEV_MAIL_DIRECTORY=/data diff --git a/environment/minio.env b/environment/minio.env index 2d4c00e..edcf5ea 100644 --- a/environment/minio.env +++ b/environment/minio.env @@ -1,2 +1,4 @@ +MINIO_VOLUMES=/data MINIO_DOMAIN=minio MINIO_ROOT_USER=minio_pretendo +MINIO_BROWSER_REDIRECT=false