From 7104b8de8a1443793e17e497b00f08fb56eeb3ad Mon Sep 17 00:00:00 2001
From: jensilo <k@jensheise.com>
Date: Sat, 16 Dec 2023 18:22:18 +0100
Subject: [PATCH] style

---
 docker/app/docker-compose.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docker/app/docker-compose.yml b/docker/app/docker-compose.yml
index ed01cb8..2cedefb 100644
--- a/docker/app/docker-compose.yml
+++ b/docker/app/docker-compose.yml
@@ -8,7 +8,7 @@ services:
     networks:
       - services
     volumes:
-      # The postgres data is stored in the pg/data folder on your host machine, allowing postgres to persist data even if the container is removed
+      # The postgres data is stored in the pg/data/ folder on your host machine, allowing postgres to persist data even if the container is removed
       - ./pg/data:/var/lib/postgresql/data
     environment:
       POSTGRES_USER: harmony
@@ -24,7 +24,7 @@ services:
       - appnet
       - services
     volumes:
-      # You can override the default configuration by placing a local configuration file in harmony/config/local
+      # You can override the default configuration by placing a local configuration file in harmony/config/local/
       - ./harmony/config/local:/app/config/local
     environment:
       BASE_URL: ${HTTP}://${BASE_URL}
@@ -42,7 +42,7 @@ services:
       # Disable this for production and use BASE_URL: yourdomain.com and HTTP: https.
       - "8080:8213"
     # Uncomment the following labels to allow Traefik to route to this service. See explanations above each label for more information.
-    # Also, see the default /docker/traefik.example setup that is included in this repository. It is not necessary to implement this exact setup,
+    # Also, see the default docker/traefik.example/ setup that is included in this repository. It is not necessary to implement this exact setup,
     # but it might help you understand how to configure Traefik. For more see the Traefik documentation.
     #labels:
       # Enable Traefik for this service, otherwise it will not be routed to
-- 
GitLab