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"