From 309af2d162d1567a17af0dd128e79369ac5369aa Mon Sep 17 00:00:00 2001 From: moanos Date: Sat, 13 Apr 2024 12:11:14 +0200 Subject: [PATCH] refactor: make default port 7345 --- Dockerfile | 2 +- README.md | 2 +- docker/notfellchen.bash | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8acc76..430fbbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,5 +17,5 @@ RUN nf compilemessages --ignore venv COPY docker/notfellchen.bash /bin/notfellchen -EXPOSE 8345 +EXPOSE 7345 CMD ["notfellchen"] diff --git a/README.md b/README.md index d27518a..73fff28 100644 --- a/README.md +++ b/README.md @@ -36,5 +36,5 @@ docker build . -t moanos/notfellchen:latest ``` ``` -docker run -p8000:8345 moanos/notfellchen:latest +docker run -p8000:7345 moanos/notfellchen:latest ``` \ No newline at end of file diff --git a/docker/notfellchen.bash b/docker/notfellchen.bash index c63942a..11311ef 100755 --- a/docker/notfellchen.bash +++ b/docker/notfellchen.bash @@ -18,5 +18,5 @@ exec gunicorn notfellchen.wsgi \ --max-requests 1200 \ --max-requests-jitter 50 \ --log-level=info \ - --bind 0.0.0.0:8345 + --bind 0.0.0.0:7345