version: "3.9" services: db: image: postgres:15-alpine container_name: geo_db restart: unless-stopped environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres123 POSTGRES_DB: geo_platform ports: - "5433:5432" volumes: - postgres_data:/var/lib/postgresql/data - ./backend/init-db.sh:/docker-entrypoint-initdb.d/01-install-pgvector.sh healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres -d geo_platform"] interval: 5s timeout: 5s retries: 5 deploy: resources: limits: memory: 512m cpus: '0.5' reservations: memory: 256m redis: image: redis:7-alpine container_name: geo_redis restart: unless-stopped ports: - "6380:6379" volumes: - redis_data:/data healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 5s timeout: 5s retries: 5 deploy: resources: limits: memory: 128m cpus: '0.25' reservations: memory: 64m backend: build: ./backend container_name: geo_backend restart: unless-stopped ports: - "8000:8000" env_file: - .env environment: DATABASE_URL: postgresql+asyncpg://postgres:postgres123@db:5432/geo_platform REDIS_URL: redis://redis:6379/0 volumes: - ./backend:/app depends_on: db: condition: service_healthy redis: condition: service_healthy command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload deploy: resources: limits: memory: 512m cpus: '1.0' reservations: memory: 256m frontend: build: ./frontend container_name: geo_frontend restart: unless-stopped ports: - "3000:3000" env_file: - .env volumes: - ./frontend:/app - /app/node_modules depends_on: - backend command: npm run dev deploy: resources: limits: memory: 256m cpus: '0.5' reservations: memory: 128m volumes: postgres_data: redis_data: