fix(docker): inlude symlinks in scanning for init scripts (#11077)

(cherry picked from commit 72f4c6f029)
This commit is contained in:
filipremb 2025-11-26 06:19:06 +01:00 committed by Marcin Rataj
parent 16cf61d6e7
commit 78a2f2cf24

View File

@ -50,6 +50,6 @@ else
unset IPFS_SWARM_KEY_FILE
fi
find /container-init.d -maxdepth 1 -type f -iname '*.sh' -print0 | sort -z | xargs -n 1 -0 -r container_init_run
find /container-init.d -maxdepth 1 \( -type f -o -type l \) -iname '*.sh' -print0 | sort -z | xargs -n 1 -0 -r container_init_run
exec ipfs "$@"