We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce99992 commit 123b17aCopy full SHA for 123b17a
run.sh
@@ -186,8 +186,10 @@ do
186
echo "containerd db is not locked"
187
fi
188
189
+ CURRENT_CGROUP=$(cat /proc/self/cgroup)
190
+ echo "Current cgroup: ${CURRENT_CGROUP}"
191
echo "Starting dockerd"
- dockerd ${DOCKERD_PARAMS} <&- &
192
+ dockerd --cgroup-parent=${CURRENT_CGROUP} ${DOCKERD_PARAMS} <&- &
193
echo "Waiting at most 20s for docker pid"
194
CNT=0
195
while ! test -f "${DOCKERD_PID_FILE}" || test -z "$(cat ${DOCKERD_PID_FILE})"
0 commit comments