Merge pull request 'chore(docker): change application port from 8080 to 8081' (#12) from feature/meetings into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/12
This commit is contained in:
Saani 2025-11-23 14:07:47 +00:00
commit 4fd018e97c

View File

@ -24,7 +24,7 @@ COPY . .
RUN python manage.py collectstatic --noinput RUN python manage.py collectstatic --noinput
# Expose port # Expose port
EXPOSE 8080 EXPOSE 8081
# Run migrations and start Gunicorn # 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" CMD sh -c "python manage.py migrate && gunicorn booking_system.wsgi:application --bind 0.0.0.0:8081 --workers 3"