Files
checklist/docker-compose.yml
ronalds 1b0a50338e Cambios Implementados:
1. PostgreSQL (Base de Datos)
Variables de entorno: TZ=Atlantic/Canary y PGTZ=Atlantic/Canary
Configurado en todos los archivos Docker: docker-compose.yml, docker-compose.prod.yml, docker-stack.yml
2. Backend (FastAPI/Python)
Configuración de zona horaria al inicio de main.py
Conexión a PostgreSQL con parámetro de timezone
Event listener que establece timezone en cada conexión a la BD
Variable de entorno: TZ=Atlantic/Canary
3. Frontend (React)
Ya estaba usando fechas locales correctamente con el constructor new Date(year, month, day)
4. Migración SQL
Creado set_timezone_canary.sql para actualizar la BD existente
2025-12-09 00:24:21 -03:00

55 lines
1.6 KiB
YAML

services:
postgres:
image: postgres:15-alpine
container_name: checklist-db
environment:
POSTGRES_DB: ${POSTGRES_DB:-checklist_db}
POSTGRES_USER: ${POSTGRES_USER:-checklist_user}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-checklist_pass_2024}
TZ: Atlantic/Canary
PGTZ: Atlantic/Canary
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./init-db.sh:/docker-entrypoint-initdb.d/init-db.sh
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-checklist_user} -d ${POSTGRES_DB:-checklist_db}"]
interval: 10s
timeout: 5s
retries: 5
backend:
build: ./backend
container_name: checklist-backend
environment:
DATABASE_URL: postgresql://${POSTGRES_USER:-checklist_user}:${POSTGRES_PASSWORD:-checklist_pass_2024}@postgres:5432/${POSTGRES_DB:-checklist_db}
SECRET_KEY: ${SECRET_KEY:-your-secret-key-change-in-production-min-32-chars}
OPENAI_API_KEY: ${OPENAI_API_KEY}
ENVIRONMENT: ${ENVIRONMENT:-development}
TZ: Atlantic/Canary
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: