diff options
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"] |