From 82103810273051e2db52255609cbe056ae9e5eda Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Fri, 14 Jul 2023 16:29:39 +0200 Subject: [PATCH] Fix docker port to 8000 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f0e38a9..8568116 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"