Spaces:
Running on Zero
Running on Zero
File size: 320 Bytes
cf6e6cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | services:
api:
container_name: Captiona
image: captiona:latest
build:
context: ..
dockerfile: docker/Dockerfile.api
ports:
- "8000:8000"
volumes:
- ..:/app
- ../models/hf_cache:/app/models/hf_cache
environment:
- DEBUG=1
- HF_HOME=/app/models/hf_cache
|