summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-22 10:22:47 +0300
committerAndrew Dolgov <[email protected]>2023-10-22 10:22:47 +0300
commitb0f96dbb5a98ab383ee1c491520ab73df4fcc687 (patch)
treeb951d4fc2159b9dde79da40cd435b1ec17275c8d
parentaec8cdd0c8f8e5134f96f8b55e48d503f8546f74 (diff)
force create cache directories on app startup
-rw-r--r--.docker/app/startup.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/.docker/app/startup.sh b/.docker/app/startup.sh
index 589125805..dcf234112 100644
--- a/.docker/app/startup.sh
+++ b/.docker/app/startup.sh
@@ -52,7 +52,8 @@ else
echo "warning: working copy in $DST_DIR won't be updated, make sure you know what you're doing."
fi
-for d in cache lock feed-icons plugins.local themes.local; do
+for d in cache lock feed-icons plugins.local
+ themes.local templates.local cache/export cache/feeds cache/images cache/upload; do
sudo -u app mkdir -p $DST_DIR/$d
done