backend: build: context: ./backend dockerfile: Dockerfile ports: - "8000:8000" environment: - DATABASE_URL=postgresql://ollama:password@db:5432/ollama_proxy - OLLAMA_URL=http://ollama:11434 - SECRET_KEY=your-secret-key-change-me depends_on: - db db: image: postgres:16 environment: - POSTGRES_USER=ollama - POSTGRES_PASSWORD=password - POSTGRES_DB=ollama_proxy volumes: - postgres_data:/var/lib/postgresql/data volumes: postgres_data: