feat: Update application to use port 8808 instead of 8000 in README, Dockerfile, app.py, and docker-compose.yaml

This commit is contained in:
JB
2025-10-05 16:18:05 -07:00
parent 66a0679e18
commit 1629d3e80c
5 changed files with 11 additions and 13 deletions
+2 -4
View File
@@ -1,5 +1,3 @@
version: "3.9"
services:
abogen:
build:
@@ -10,12 +8,12 @@ services:
TORCH_VERSION: ${TORCH_VERSION:-}
image: abogen:latest
ports:
- "${ABOGEN_PORT:-8000}:8000"
- "${ABOGEN_PORT:-8808}:8808"
volumes:
- ${ABOGEN_DATA:-./data}:/data
environment:
ABOGEN_HOST: 0.0.0.0
ABOGEN_PORT: 8000
ABOGEN_PORT: 8808
ABOGEN_UPLOAD_ROOT: /data/uploads
ABOGEN_OUTPUT_ROOT: /data/outputs
# --- GPU support -----------------------------------------------------