AnotherLanguageApp / docker-compose.yml
samu's picture
v3 backend
c151c44
raw
history blame contribute delete
409 Bytes
services:
api: # Changed from 'web' to 'api'
build: .
ports:
- "${API_PORT:-8000}:8000"
volumes:
- ./output:/code/output
environment:
- API_KEY=${API_KEY}
- OLLAMA_API_KEY=${OLLAMA_API_KEY}
- API_PORT=${API_PORT}
env_file:
- .env
restart: unless-stopped
develop:
watch:
- action: sync
path: .
target: /code