#!/bin/sh config_dir=`uci -q get mastodon.@mastodon[0].config_path` data_dir=`docker inspect --format '{{.Mounts}}' mastodon | grep -Eom1 '[^ ]+/_data /var/www/html local true ' | cut -d' ' -f1` if [ -n "$data_dir" -a "$data_dir" != "$config_dir" ]; then uci -q batch <<-EOF >/dev/null set mastodon.@mastodon[0].config_path="$data_dir" commit mastodon EOF fi exit 0