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,29 @@
name: block-game
services:
postgres:
image: postgres:17.6-alpine3.22
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: blockgame
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
backend:
build:
context: backend
dockerfile: Dockerfile
restart: unless-stopped
frontend:
build:
context: frontend
dockerfile: Dockerfile
environment:
- DANGEROUSLY_DISABLE_HOST_CHECK=true
ports:
- 5874:8080
restart: unless-stopped
volumes:
postgres_data: