VisionSeq / docker-compose.yml
Antigravity Agent
Restructure repository: modularize backend and frontend, add docs, Dockerfiles, and notebooks
b4c8af9
Raw
History Blame Contribute Delete
554 Bytes
version: '3.8'
services:
backend:
build:
context: .
dockerfile: Dockerfile.backend
ports:
- "8000:8000"
volumes:
- ./backend:/app/backend
environment:
- MODEL_PATH=weights/final_resnet18_captcha.pth
- NUM_CHARS=31
frontend:
build:
context: .
dockerfile: Dockerfile.frontend
ports:
- "3000:3000"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1
depends_on:
- backend