fix(docker): correct port bindings to match NPM config (nginx→80, reverb→8080, mailpit→8025)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
Boban Blaskovic 2026-05-22 06:37:32 +02:00
parent 8801780773
commit b08d8703cd
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ services:
context: ./docker/nginx context: ./docker/nginx
dockerfile: Dockerfile dockerfile: Dockerfile
ports: ports:
- "8080:80" - "80:80"
volumes: volumes:
- .:/var/www/html:ro - .:/var/www/html:ro
- app_public:/var/www/html/storage/app/public:ro - app_public:/var/www/html/storage/app/public:ro
@ -67,7 +67,7 @@ services:
dockerfile: docker/app/Dockerfile dockerfile: docker/app/Dockerfile
command: php artisan reverb:start --host=0.0.0.0 --port=8081 command: php artisan reverb:start --host=0.0.0.0 --port=8081
ports: ports:
- "8081:8081" - "8080:8081"
volumes: volumes:
- .:/var/www/html - .:/var/www/html
- app_storage:/var/www/html/storage/app - app_storage:/var/www/html/storage/app
@ -106,7 +106,7 @@ services:
mailpit: mailpit:
image: axllent/mailpit image: axllent/mailpit
ports: ports:
- "127.0.0.1:8025:8025" - "8025:8025"
- "127.0.0.1:1025:1025" - "127.0.0.1:1025:1025"
networks: [lernschiff_net] networks: [lernschiff_net]