From 3360fda6d84b9f8470b3cba0ca851a16289f9e0e Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 30 Apr 2024 12:24:31 +0100 Subject: Ports changes --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 426c85e..aca9dfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ USER 1001 RUN python manage.py migrate # Expose the port on which your Django application will run -EXPOSE 8080 +EXPOSE 8000 # Run the application using Gunicorn -CMD ["gunicorn", "ded.wsgi:application", "--bind", "0.0.0.0:8080"] +CMD ["gunicorn", "ded.wsgi:application", "--bind", "0.0.0.0:8000"] -- cgit v1.2.3