mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-26 02:03:14 -04:00
17 lines
424 B
Plaintext
17 lines
424 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
echo "Applying the SWAG dashboard mod..."
|
|
|
|
apk add --no-cache --upgrade goaccess
|
|
|
|
if [ ! -f /config/nginx/proxy-confs/dashboard.subdomain.conf ]; then
|
|
cp /dashboard/dashboard.subdomain.conf.sample /config/nginx/proxy-confs/dashboard.subdomain.conf
|
|
fi
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/dashboard \
|
|
/config/nginx/proxy-confs/dashboard.subdomain.conf
|
|
|
|
echo "Applied the SWAG dashboard mod"
|