From 7fe854c6cf83707ed48317489870c3186c90f3e1 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 1 Sep 2025 08:59:16 +0200 Subject: [PATCH] Modify entrypoint command to change directory first Change the command to execute entrypoint.sh with a directory change. --- wger/rootfs/etc/cont-init.d/90-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wger/rootfs/etc/cont-init.d/90-run.sh b/wger/rootfs/etc/cont-init.d/90-run.sh index 4b1febdd5..84b948cc2 100755 --- a/wger/rootfs/etc/cont-init.d/90-run.sh +++ b/wger/rootfs/etc/cont-init.d/90-run.sh @@ -45,4 +45,4 @@ nginx || true & true bashio::log.info "Starting entrypoint" -su -p -s /bin/bash wger -c "/home/wger/entrypoint.sh" +su -p -s /bin/bash wger -c "cd /home/wger/src && exec /home/wger/entrypoint.sh"