mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 18:03:01 -04:00
7 lines
186 B
Plaintext
Executable File
7 lines
186 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if [[ $(uname -m) = "x86_64" ]]; then
|
|
echo "**** Enabling QEMU ****"
|
|
exec docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
|
fi
|