1
0
Fork 0

Fix docker port to 8000

master
palid 2023-07-14 16:29:39 +02:00
parent b09016ea3b
commit 8210381027
Signed by: palid
SSH Key Fingerprint: SHA256:Mus3wCd2x6nxtARI0DpWGT7lIWbNy3R90BVDg0j35PI
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"