From c1f4902cf416acd4ac68a1084887a66bd62dfa2a Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sun, 2 Nov 2025 11:07:28 +0100 Subject: [PATCH] fix: update UVICORN_PORT to 8003 in Dockerfile and docker-compose.yml --- Dockerfile | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f9aef7..0fae805 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG PYTHON_VERSION=3.11-slim ARG APT_CACHE_URL=http://192.168.88.14:3142 ARG UVICORN_WORKERS=4 -ARG UVICORN_PORT=8000 +ARG UVICORN_PORT=8003 FROM python:${PYTHON_VERSION} AS builder ARG APT_CACHE_URL diff --git a/docker-compose.yml b/docker-compose.yml index f92485c..9680f1e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: context: . dockerfile: Dockerfile ports: - - "8000:8000" + - "8003:8003" environment: - DATABASE_HOST=postgres - DATABASE_PORT=5432