GitRecap / docker-compose.yaml
github-actions[bot]
Deploy app/api to HF Space
0491d76
raw
history blame contribute delete
231 Bytes
version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
ports:
- "8000:8000"
volumes:
- .:/app
restart: unless-stopped
command: python main.py