fix(docker): bind HTTP port to localhost in docker-compose for enhanced security

This commit is contained in:
2026-06-07 00:10:18 +03:30
parent 12d149e5d9
commit c2319a55cb

View File

@@ -30,7 +30,7 @@ services:
depends_on:
- app
ports:
- "${HTTP_PORT:-8080}:80"
- "127.0.0.1:${HTTP_PORT:-8080}:80"
volumes:
- app-storage:/var/www/html/storage:ro
networks: