adding validated services? patching forcad_local.py

This commit is contained in:
Your Name
2026-08-13 08:32:35 +07:00
parent d485f61169
commit e795614e45
1459 changed files with 420036 additions and 436 deletions

View File

@@ -0,0 +1,41 @@
name: block-game
services:
postgres:
image: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: blockgame
volumes:
- postgres_data_dev:/var/lib/postgresql/data
backend:
build:
context: backend
dockerfile: Dockerfile.dev
ports:
- 8081:8080
volumes:
- ./backend:/app
frontend:
build:
context: frontend
dockerfile: Dockerfile.dev
ports:
- "8082:3000"
environment:
- CHOKIDAR_USEPOLLING=true
- DANGEROUSLY_DISABLE_HOST_CHECK=true
volumes:
- ./frontend:/app
- /app/node_modules
- /app/build
router:
image: nginx:latest
ports:
- "8080:8080"
volumes:
- ./nginx.dev.conf:/etc/nginx/nginx.conf:ro
volumes:
postgres_data_dev: