Spaces:
Runtime error
Runtime error
fixing the port bug
Browse files- docker-compose.yaml +2 -2
docker-compose.yaml
CHANGED
@@ -2,8 +2,8 @@ services:
|
|
2 |
app:
|
3 |
build: .
|
4 |
container_name: gpt-summary
|
5 |
-
command: uvicorn main:app --host 0.0.0.0 --port
|
6 |
ports:
|
7 |
-
- 8000:
|
8 |
volumes:
|
9 |
- .:/app
|
|
|
2 |
app:
|
3 |
build: .
|
4 |
container_name: gpt-summary
|
5 |
+
command: uvicorn main:app --host 0.0.0.0 --port 8010 --reload
|
6 |
ports:
|
7 |
+
- 8000:8010
|
8 |
volumes:
|
9 |
- .:/app
|