From cccb9c974f8559460349a45668bc9f269f25183e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?So=CC=88nke=20Domro=CC=88se?= Date: Wed, 18 Jun 2025 14:33:23 +0200 Subject: [PATCH] add Bookstack --- bookstack/docker-compose.yaml | 4 ++-- generataeCaddySnippets.sh | 5 ----- generateCaddySnippets.sh | 5 +++++ 3 files changed, 7 insertions(+), 7 deletions(-) delete mode 100755 generataeCaddySnippets.sh create mode 100755 generateCaddySnippets.sh diff --git a/bookstack/docker-compose.yaml b/bookstack/docker-compose.yaml index 76beae5..73496e4 100644 --- a/bookstack/docker-compose.yaml +++ b/bookstack/docker-compose.yaml @@ -47,7 +47,7 @@ services: # You generally only ever need to map this one volume. # This maps it to a "bookstack_app_data" folder in the same # directory as this compose config file. - - ./bookstack_app_data:/config + - /home/soenke/dockerdata/bookstack/bookstack_app_data:/config ports: # This exposes port 6875 for general web access. # Commonly you'd have a reverse proxy in front of this, @@ -78,7 +78,7 @@ services: # You generally only ever need to map this one volume. # This maps it to a "bookstack_db_data" folder in the same # directory as this compose config file. - - ./bookstack_db_data:/config + - /home/soenke/dockerdata/bookstack/bookstack_db_data:/config # These ports are commented out as you don't really need this port # exposed for normal use, mainly only if connecting direct the the diff --git a/generataeCaddySnippets.sh b/generataeCaddySnippets.sh deleted file mode 100755 index d94a4f4..0000000 --- a/generataeCaddySnippets.sh +++ /dev/null @@ -1,5 +0,0 @@ -for dir in *; do - if [ -d "$dir" ]; then - ( cd "$dir" && touch Caddyfilepart && rm caddy.json ) - fi -done diff --git a/generateCaddySnippets.sh b/generateCaddySnippets.sh new file mode 100755 index 0000000..54bb861 --- /dev/null +++ b/generateCaddySnippets.sh @@ -0,0 +1,5 @@ +for dir in *; do + if [ -d "$dir" ]; then + ( cd "$dir" && touch Caddyfilepart ) + fi +done