From af4570d6d26215747c55be55a860cf20a7392388 Mon Sep 17 00:00:00 2001 From: saani Date: Sun, 23 Nov 2025 14:06:30 +0000 Subject: [PATCH] chore(docker): change application port from 8080 to 8081 Update the Dockerfile to use port 8081 instead of 8080 for the application. This includes: - Modified EXPOSE directive to port 8081 - Updated Gunicorn bind address to 0.0.0.0:8081 Ensures consistency between the exposed port and the actual port the application binds to when running inside the container. --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index f234346..c532bda 100644 --- a/dockerfile +++ b/dockerfile @@ -24,7 +24,7 @@ COPY . . RUN python manage.py collectstatic --noinput # Expose port -EXPOSE 8080 +EXPOSE 8081 # Run migrations and start Gunicorn -CMD sh -c "python manage.py migrate && gunicorn booking_system.wsgi:application --bind 0.0.0.0:8080 --workers 3" \ No newline at end of file +CMD sh -c "python manage.py migrate && gunicorn booking_system.wsgi:application --bind 0.0.0.0:8081 --workers 3" \ No newline at end of file -- 2.39.5