Modifier le mappage des ports dans docker-compose.yml pour utiliser le port 3001

This commit is contained in:
Arthur
2025-09-14 13:25:15 +02:00
parent a39b501d00
commit 422cc86176
+1 -1
View File
@@ -6,7 +6,7 @@ services:
context: .
dockerfile: Dockerfile
ports:
- "${PORT:-3000}:${PORT:-3000}" # Map the container port to the host port
- "3001:${PORT:-3000}" # Map the container port to the host port
restart: unless-stopped
environment:
- NODE_ENV=${NODE_ENV:-production}