view love/docker-compose.yml @ 279:b3b547563ec7

Add Google connector service and agent wiki Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code. Co-authored-by: Copilot <[email protected]> Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
author MrJuneJune <me@mrjunejune.com>
date Mon, 17 Aug 2026 22:22:36 -0700
parents cf9caa4abc3e
children
line wrap: on
line source

version: '3.9'

services:
  frontend:
    build:
      context: ./epi
      dockerfile: Dockerfile
    ports:
      - "5173:5173"
    volumes:
      - ./epi:/app
      - /app/node_modules
    environment:
      - NODE_ENV=development
      - VITE_API_BASE_URL=http://localhost:8000 
    command: npm run dev -- --host 0.0.0.0 --port 5173
    depends_on:
      - backend

  backend:
    build:
      context: ./poppy
      dockerfile: Dockerfile
    ports:
      - "8000:8000"
    volumes:
      - ./poppy:/app
    environment:
      - REDIS_URL=redis://redis:6379/0 
      - ASYNC_DATABASE_URL=sqlite+aiosqlite:///./poppy.db
      - SYNC_DATABASE_URL=sqlite:///./poppy.db
      - XAI_API_KEY=NO_API
      - PYTHONUNBUFFERED=1
    command: >
      uvicorn main:app --host 0.0.0.0 --port 8000 --reload --reload-exclude "*.pyc" --reload-exclude "__pycache__" --reload-exclude "logs" --reload-exclude "media"
    depends_on:
      - redis

  redis:
    image: redis:7-alpine
    ports:
      - "7777:6379"
    command: redis-server --appendonly yes
    volumes:
      - redis-data:/data

volumes:
  redis-data: