ViT_Deepfake_Detection / docker-compose.yml
aznasut's picture
ignore temp files
927cd70
raw
history blame contribute delete
276 Bytes
version: "1.0"
services:
backend:
container_name: backend
build: .
working_dir: /app
command: uvicorn main:app --host 0.0.0.0 --port 7680 --reload
environment:
- WATCHFILES_FORCE_POLLING=true
ports:
- "80:7680"
restart: on-failure