SurfSense/docker-compose.yml
2025-04-28 00:04:20 +05:30

44 lines
No EOL
964 B
YAML

version: '3.8'
services:
frontend:
images: ghcr.io/anshul7665/surfsense_ui:latest
ports:
- "3000:3000"
volumes:
- ./surfsense_web:/app
- /app/node_modules
depends_on:
- backend
environment:
- NEXT_PUBLIC_API_URL=http://backend:8000
backend:
images: ghcr.io/anshul7665/surfsense_backend:latest
ports:
- "8000:8000"
volumes:
- ./surfsense_backend:/app
depends_on:
- db
env_file:
- ./surfsense_backend/.env
environment:
- DATABASE_URL=postgresql+asyncpg://postgres:postgres@db:5432/surfsense
- PYTHONPATH=/app
- UVICORN_LOOP=asyncio
- UNSTRUCTURED_HAS_PATCHED_LOOP=1
db:
image: ankane/pgvector:latest
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=surfsense
volumes:
postgres_data: