From 01d222357df49903c2a5cf0f91f92e1782517fd5 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Sun, 13 Apr 2025 17:56:34 +0100 Subject: [PATCH] [2025-04-13] Update port, 80 -> 8080 --- build/Dockerfile | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index a515c2a..0044eb0 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -7,6 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -EXPOSE 80 +EXPOSE 8080 CMD ["gunicorn","--config", "gunicorn_config.py", "year-progress:app"] diff --git a/docker-compose.yml b/docker-compose.yml index 7054e94..7e10b42 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,4 +8,4 @@ services: context: build dockerfile: Dockerfile ports: - - "1111:80" + - "1111:8080"