From 2163e85b165e8e9fefadd7f5f0902f4bd6c26638 Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 15 Feb 2024 16:00:35 +0300 Subject: [PATCH] port8000 --- Dockerfile | 2 +- settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d9c8e9c..558db76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.12-slim WORKDIR /app # Add metadata to the image to describe that the container is listening on port 80 -EXPOSE 80 +EXPOSE 8000 # Copy the current directory contents into the container at /app COPY . /app diff --git a/settings.py b/settings.py index eaae333..58633a4 100644 --- a/settings.py +++ b/settings.py @@ -1,6 +1,6 @@ from os import environ -PORT = 80 +PORT = 8000 DB_URL = ( environ.get("DATABASE_URL", environ.get("DB_URL", "")).replace("postgres://", "postgresql://") or "postgresql://postgres@localhost:5432/discoursio"