This commit is contained in:
2026-03-20 14:55:36 +07:00
commit e0791c770f
13 changed files with 3445 additions and 0 deletions

56
docker-compose.yml Normal file
View File

@@ -0,0 +1,56 @@
services:
db:
image: postgres:16
container_name: app_postgres
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: testdb
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- app_network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
backend:
build: .
container_name: app_backend
restart: unless-stopped
ports:
- "3000:3000"
env_file:
- .env
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
depends_on:
db:
condition: service_healthy
networks:
- app_network
volumes:
postgres_data:
networks:
app_network:
driver: bridge