comma-fixer / docker-compose.yml
klasocki's picture
Switch back to 8000 since huggingface doesn't allow 80
1114dde
raw
history blame
No virus
265 Bytes
version: '3.1'
services:
comma-fixer:
build:
context: ./
dockerfile: Dockerfile
container_name: comma-fixer
command: uvicorn --host 0.0.0.0 --port 8000 "app:app" --reload
ports:
- "8000:8000"
volumes:
- .:/comma-fixer