mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-18 00:45:47 +00:00
12 lines
234 B
Text
Executable file
12 lines
234 B
Text
Executable file
#!/usr/bin/with-contenv bash
|
|
|
|
# Ensure configuration exists
|
|
if [ ! -f "/config/settings.json" ]; then
|
|
cp -a /defaults/settings.json /config/settings.json
|
|
fi
|
|
|
|
# permissions
|
|
chown abc:abc \
|
|
/config/settings.json \
|
|
/database \
|
|
/srv
|