Files
checklist/docker-compose.yml
2025-11-18 13:09:42 -03:00

53 lines
1.3 KiB
YAML

version: '3.8'
services:
postgres:
image: postgres:15-alpine
container_name: checklist-db
environment:
POSTGRES_DB: checklist_db
POSTGRES_USER: checklist_user
POSTGRES_PASSWORD: checklist_pass_2024
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U checklist_user"]
interval: 10s
timeout: 5s
retries: 5
backend:
build: ./backend
container_name: checklist-backend
environment:
DATABASE_URL: postgresql://checklist_user:checklist_pass_2024@postgres:5432/checklist_db
SECRET_KEY: your-secret-key-change-in-production-min-32-chars
OPENAI_API_KEY: ${OPENAI_API_KEY}
ENVIRONMENT: development
ports:
- "8000:8000"
volumes:
- ./backend:/app
- ./uploads:/app/uploads
depends_on:
postgres:
condition: service_healthy
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
frontend:
build: ./frontend
container_name: checklist-frontend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_URL=http://localhost:8000
command: npm run dev -- --host
volumes:
postgres_data: