You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo>&2"error: attempting to run rootless dockerd but need 'user.max_user_namespaces' (/proc/sys/user/max_user_namespaces) set to a sufficiently large value"
echo>&2"error: attempting to run rootless dockerd but need 'user.max_user_namespaces' (/proc/sys/user/max_user_namespaces) set to a sufficiently large value"
if ! wget -O rootless.tgz "https://download.docker.com/linux/static/${DOCKER_CHANNEL}/${dockerArch}/docker-rootless-extras-${DOCKER_VERSION}.tgz"; then \
33
+
echo >&2 "error: failed to download 'docker-rootless-extras-${DOCKER_VERSION}' from '${DOCKER_CHANNEL}' for '${dockerArch}'"; \
34
+
exit 1; \
35
+
fi; \
36
+
\
37
+
tar --extract \
38
+
--file rootless.tgz \
39
+
--strip-components 1 \
40
+
--directory /usr/local/bin/ \
41
+
'docker-rootless-extras/vpnkit' \
42
+
; \
43
+
rm rootless.tgz; \
44
+
\
45
+
# we download/build rootlesskit separately to get a newer release
0 commit comments