From 7a1c9ee23953980befd9c4423a52f056f2558740 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Tue, 16 Mar 2021 08:53:02 +0000
Subject: [PATCH] change port to 8888

---
 Dockerfile               | 4 ++--
 docker-compose.yml       | 8 ++++----
 docker/nginx/nginx.conf  | 2 +-
 docker/nginx/smasch.conf | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 86aeab54..d2ffe2ca 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,5 +21,5 @@ RUN npm --version
 RUN npm install
 
 ENTRYPOINT [ "/bin/sh" ]
-CMD [ "manage.py runserver 0.0.0.0:8002" ]
-EXPOSE 8002
+CMD [ "manage.py runserver 0.0.0.0:8888" ]
+EXPOSE 8888
diff --git a/docker-compose.yml b/docker-compose.yml
index 537c9fa7..69626143 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -13,21 +13,21 @@ services:
     web:
         build: .
         expose: 
-            - '8002'
+            - '8888'
         entrypoint: bash -c "sleep 5
                           && python manage.py makemigrations web 
                           && python manage.py migrate
                           && python manage.py migrate sessions
                           && python manage.py collectstatic --noinput
                           && echo && echo && echo 'The server will start now...'
-                          && gunicorn -b 0.0.0.0:8002 smash.wsgi:application --access-logfile access.log --error-logfile error.log"
+                          && gunicorn -b 0.0.0.0:8888 smash.wsgi:application --access-logfile access.log --error-logfile error.log"
                           ### To run the server through manage.py, use:
-                          #  && python manage.py runserver 0.0.0.0:8002"
+                          #  && python manage.py runserver 0.0.0.0:8888"
                           ### To run the verbose tests, uncomment:
                           # python manage.py test -v3"
         command: ""
         ports:
-            - "8002:8002"
+            - "8888:8888"
         volumes:
             - static_files:/tmp/static/
         depends_on:
diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf
index c1364344..03708936 100644
--- a/docker/nginx/nginx.conf
+++ b/docker/nginx/nginx.conf
@@ -43,7 +43,7 @@ http {
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_set_header Host $http_host;
             proxy_redirect off;
-            proxy_pass http://web:8002;
+            proxy_pass http://web:8888;
         }
     }
 }
diff --git a/docker/nginx/smasch.conf b/docker/nginx/smasch.conf
index cf655815..628208b1 100644
--- a/docker/nginx/smasch.conf
+++ b/docker/nginx/smasch.conf
@@ -46,6 +46,6 @@ server {
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_set_header Host $http_host;
             proxy_redirect off;
-            proxy_pass http://web:8002;
+            proxy_pass http://web:8888;
     }
 }
-- 
GitLab