fix: Update port mappings for backend and frontend services in docker-compose.yml

This commit is contained in:
MayaTheShy
2026-02-16 00:12:27 -05:00
parent efa5afd79a
commit d2f2e85bf2

View File

@@ -8,7 +8,7 @@ services:
dockerfile: Dockerfile
container_name: turtle-server
ports:
- "3001:3001" # HTTP API
- "3333:3001" # HTTP API
- "3002:3002" # WebSocket
environment:
- NODE_ENV=production
@@ -31,7 +31,7 @@ services:
dockerfile: Dockerfile
container_name: turtle-client
ports:
- "3000:3000" # Vite preview server
- "4444:3000" # Vite preview server
depends_on:
- server
restart: unless-stopped