add Bookstack

This commit is contained in:
Sönke Domröse
2025-06-18 14:33:23 +02:00
parent 96f73fb1bb
commit cccb9c974f
3 changed files with 7 additions and 7 deletions

View File

@@ -47,7 +47,7 @@ services:
# You generally only ever need to map this one volume. # You generally only ever need to map this one volume.
# This maps it to a "bookstack_app_data" folder in the same # This maps it to a "bookstack_app_data" folder in the same
# directory as this compose config file. # directory as this compose config file.
- ./bookstack_app_data:/config - /home/soenke/dockerdata/bookstack/bookstack_app_data:/config
ports: ports:
# This exposes port 6875 for general web access. # This exposes port 6875 for general web access.
# Commonly you'd have a reverse proxy in front of this, # 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. # You generally only ever need to map this one volume.
# This maps it to a "bookstack_db_data" folder in the same # This maps it to a "bookstack_db_data" folder in the same
# directory as this compose config file. # 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 # These ports are commented out as you don't really need this port
# exposed for normal use, mainly only if connecting direct the the # exposed for normal use, mainly only if connecting direct the the

View File

@@ -1,5 +0,0 @@
for dir in *; do
if [ -d "$dir" ]; then
( cd "$dir" && touch Caddyfilepart && rm caddy.json )
fi
done

5
generateCaddySnippets.sh Executable file
View File

@@ -0,0 +1,5 @@
for dir in *; do
if [ -d "$dir" ]; then
( cd "$dir" && touch Caddyfilepart )
fi
done