Run Backend on 3070

This commit is contained in:
2025-10-01 17:18:08 -05:00
parent 63603529f2
commit f9deff9526
2 changed files with 17 additions and 8 deletions

View File

@@ -1,8 +1,17 @@
version: "3.9"
services:
web:
build: .
ports:
- "8080:80"
backend:
image: node:22-alpine
container_name: annaville-backend
restart: unless-stopped
working_dir: /app
volumes:
- ./:/app
ports:
- "3070:3070"
command: sh -c "npm install && npm run start:server"
networks:
- annaville-network
networks:
annaville-network:
driver: bridge