maubot/docker/run.sh

47 lines
1.4 KiB
Bash
Raw Normal View History

#!/bin/sh
function fixperms {
chown -R $UID:$GID /var/log /data
2021-11-19 15:22:17 +00:00
}
function fixdefault {
_value=$(yq e "$1" /data/config.yaml)
if [[ "$_value" == "$2" ]]; then
yq e -i "$1 = "'"'"$3"'"' /data/config.yaml
2021-11-19 15:22:17 +00:00
fi
}
function fixconfig {
# Change relative default paths to absolute paths in /data
fixdefault '.database' 'sqlite:///maubot.db' 'sqlite:////data/maubot.db'
fixdefault '.plugin_directories.upload' './plugins' '/data/plugins'
fixdefault '.plugin_directories.load[0]' './plugins' '/data/plugins'
fixdefault '.plugin_directories.trash' './trash' '/data/trash'
fixdefault '.plugin_databases.sqlite' './plugins' '/data/dbs'
fixdefault '.plugin_databases.sqlite' './dbs' '/data/dbs'
fixdefault '.logging.handlers.file.filename' './maubot.log' '/var/log/maubot.log'
# This doesn't need to be configurable
2022-01-07 14:17:47 +00:00
yq e -i '.server.override_resource_path = "/opt/maubot/frontend"' /data/config.yaml
}
cd /opt/maubot
2021-11-19 15:22:17 +00:00
mkdir -p /var/log/maubot /data/plugins /data/trash /data/dbs
if [ ! -f /data/config.yaml ]; then
2021-11-19 15:22:17 +00:00
cp example-config.yaml /data/config.yaml
echo "Config file not found. Example config copied to /data/config.yaml"
echo "Please modify the config file to your liking and restart the container."
fixperms
2021-11-19 15:22:17 +00:00
fixconfig
exit
fi
fixperms
2021-11-19 15:22:17 +00:00
fixconfig
2022-01-07 14:20:50 +00:00
if ls /data/plugins/*.db > /dev/null 2>&1; then
mv -n /data/plugins/*.db /data/dbs/
fi
2021-11-19 15:22:17 +00:00
exec su-exec $UID:$GID python3 -m maubot -c /data/config.yaml