Merge pull request #2428 from alexbelgium/codex/fix-missing-docker-mods-in-repo

Run docker mods during PID1 startup
This commit is contained in:
Alexandre
2026-01-31 13:20:36 +01:00
committed by GitHub

View File

@@ -190,6 +190,11 @@ if [ -d /etc/cont-init.d ]; then
fi
if $PID1; then
if [ -f /docker-mods ]; then
echo "Running docker mods"
/docker-mods
fi
shopt -s nullglob
for runfile in /etc/services.d/*/run /etc/s6-overlay/s6-rc.d/*/run; do
[ -f "$runfile" ] || continue