fix: add --userland-proxy=false to dockerd

This commit is contained in:
admin 2026-08-03 15:44:31 +00:00
parent f394d5fa97
commit d8b40f4999

View file

@ -71,6 +71,7 @@ if ! command -v docker >/dev/null 2>&1; then
ln -sf "${DOCKER_DIR}/bin/dockerd" /usr/bin/dockerd 2>/dev/null ln -sf "${DOCKER_DIR}/bin/dockerd" /usr/bin/dockerd 2>/dev/null
"${DOCKER_DIR}/bin/dockerd" --data-root "${DOCKER_DIR}/data" \ "${DOCKER_DIR}/bin/dockerd" --data-root "${DOCKER_DIR}/data" \
--exec-root "${DOCKER_DIR}/exec" --pidfile "${DOCKER_DIR}/docker.pid" \ --exec-root "${DOCKER_DIR}/exec" --pidfile "${DOCKER_DIR}/docker.pid" \
--userland-proxy=false \
&>/dev/null & &>/dev/null &
sleep 3 sleep 3
export PATH="${DOCKER_DIR}/bin:$PATH" export PATH="${DOCKER_DIR}/bin:$PATH"