This commit is contained in:
2025-12-29 16:58:56 +03:00
commit 524f3ebf23
62 changed files with 30925 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: team-planner-db
environment:
POSTGRES_USER: teamplanner
POSTGRES_PASSWORD: teamplanner
POSTGRES_DB: teamplanner
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U teamplanner"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_data: