diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-04-30 12:25:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 12:25:08 +0100 |
commit | b9aa9c9ba3ff1b82ecf01d1e2fdffa90ca3e59f5 (patch) | |
tree | 4da432a6a5874682caa331a270f053ca70c809b7 /Dockerfile | |
parent | 9796bc5f69c1b0da57a3f11aa133ec3e10c43b66 (diff) | |
parent | 3360fda6d84b9f8470b3cba0ca851a16289f9e0e (diff) |
Merge pull request #39 from defencedigital/pyswitch
Ports changes
Diffstat (limited to 'Dockerfile')
-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"] |