From 34c11e39b835bfb09a653d37ffb6ec970ea45da6 Mon Sep 17 00:00:00 2001 From: Lauri Gates Date: Fri, 29 Sep 2023 10:25:18 +0300 Subject: [PATCH] Fix comments Some comments ended up on the wrong lines because of automatic formatting. Added the repo name at the beginning of the Dockerfile to avoid confusion between the different repo Dockerfiles. --- Dockerfile | 2 ++ docker-compose.yml | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 541a536..7e0cbc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ +# mittaridatapumppu-deviceregistry + FROM python:3.11-alpine ENV PYTHONDONTWRITEBYTECODE 1 diff --git a/docker-compose.yml b/docker-compose.yml index 7b9ff17..a92f6a8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -113,13 +113,13 @@ services: # Device registry config DJANGO_SETTINGS_MODULE: "deviceregistry.settings" ALLOWED_HOSTS: - SECRET_KEY: # PostgreSQL config - + SECRET_KEY: + # PostgreSQL config DATABASE_HOST: DATABASE_USER: DATABASE_PASSWORD: - DATABASE_PORT: # Debug config - + DATABASE_PORT: + # Debug config DEBUG: 1 depends_on: - db