Phase 0 Complete by ClaudeCode
This commit is contained in:
30
docker-compose.yml
Normal file
30
docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
container_name: bellsystems-backend
|
||||
env_file: .env
|
||||
volumes:
|
||||
- ./backend:/app
|
||||
ports:
|
||||
- "8000:8000"
|
||||
depends_on: []
|
||||
|
||||
frontend:
|
||||
build: ./frontend
|
||||
container_name: bellsystems-frontend
|
||||
volumes:
|
||||
- ./frontend:/app
|
||||
- /app/node_modules
|
||||
ports:
|
||||
- "5173:5173"
|
||||
|
||||
nginx:
|
||||
image: nginx:alpine
|
||||
container_name: bellsystems-nginx
|
||||
ports:
|
||||
- "80:80"
|
||||
volumes:
|
||||
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
depends_on:
|
||||
- backend
|
||||
- frontend
|
||||
Reference in New Issue
Block a user