From 8e9bdd6cfb90434e8c539d1be64cb2cbd57dba8c Mon Sep 17 00:00:00 2001 From: Eva Myers <81232948+emyers-ccdc@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:18:34 +0100 Subject: [PATCH 1/2] Add comments to help with customisation NO_JIRA --- docker-compose.sample-onsite-only-db-config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docker-compose.sample-onsite-only-db-config.yml b/docker-compose.sample-onsite-only-db-config.yml index 7f6a62a..24e81bd 100644 --- a/docker-compose.sample-onsite-only-db-config.yml +++ b/docker-compose.sample-onsite-only-db-config.yml @@ -1,6 +1,10 @@ # On-Site Version 4.0 version: "3.6" +# Replace /path/to/database-1 by the path to your first in-house database on the docker host +# If you have more in-house databases, replace /path/to/database-2 as well +# Add extra lines to the "volumes" and "environment" sections if needed +# Database names can also be changed services: webcsdbackend: volumes: @@ -12,6 +16,7 @@ services: - ServiceSettings__Databases__3__Name=database-2 - ServiceSettings__Databases__3__ConnectionString=/csd-data/database-2 +# Replace /path/to/structure/files by the directory with your structure files webcsd: volumes: - - ./path/to/structure/files:/structure-files \ No newline at end of file + - ./path/to/structure/files:/structure-files From d82a7fe4fd28978e69897fc33078ed290b62a35e Mon Sep 17 00:00:00 2001 From: Eva Myers <81232948+emyers-ccdc@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:21:01 +0100 Subject: [PATCH 2/2] Fix linter complaint NO_JIRA --- docker-compose.sample-onsite-only-db-config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.sample-onsite-only-db-config.yml b/docker-compose.sample-onsite-only-db-config.yml index 24e81bd..97194e8 100644 --- a/docker-compose.sample-onsite-only-db-config.yml +++ b/docker-compose.sample-onsite-only-db-config.yml @@ -16,7 +16,7 @@ services: - ServiceSettings__Databases__3__Name=database-2 - ServiceSettings__Databases__3__ConnectionString=/csd-data/database-2 -# Replace /path/to/structure/files by the directory with your structure files + # Replace /path/to/structure/files by the directory with your structure files webcsd: volumes: - ./path/to/structure/files:/structure-files