Fix docker port to 8000

This commit is contained in:
Dariusz Niemczyk 2023-07-14 16:29:39 +02:00
parent b09016ea3b
commit 8210381027
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -15,4 +15,4 @@ ADD . /code/
RUN python -m pip install gunicorn
RUN python manage.py collectstatic
CMD bash -c "python manage.py migrate && gunicorn -b 0.0.0.0:8001 spejstore.wsgi:application"
CMD bash -c "python manage.py migrate && gunicorn -b 0.0.0.0:8000 spejstore.wsgi:application"