ClientTest / docker-compose.yaml
zinoubm's picture
fixing the port bug
6013059
raw
history blame contribute delete
185 Bytes
services:
app:
build: .
container_name: gpt-summary
command: uvicorn main:app --host 0.0.0.0 --port 8010 --reload
ports:
- 8000:8010
volumes:
- .:/app