mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-01 04:21:56 -04:00
12 lines
332 B
Plaintext
12 lines
332 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/dashboard.subdomain.conf
|
|
fi
|
|
|
|
echo "Applied the SWAG dashboard mod"
|