Spaces:
Sleeping
Sleeping
File size: 167 Bytes
1455613 | 1 2 3 4 5 6 7 8 9 | version: '3.0'
services:
app:
build: .
ports:
- 8000:8000
volumes:
- .:/app
command: uvicorn main:app --host 0.0.0.0 --port 8000 --reload |