mirror of
https://github.com/moby/moby.git
synced 2026-06-27 02:09:03 +00:00
- slirp4netns/vpnkit is no longer needed as gvisor-tap-vsock is now embedded in RootlessKit. slirp4netns/vpnkit is still used when installed. - The `builtin` port driver can now correctly propagate the source IP, when `userland-proxy` is disabled. Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
31 lines
805 B
Bash
31 lines
805 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
copy_binaries() {
|
|
local dir="${1:?}"
|
|
|
|
# Add nested executables to bundle dir so we have complete set of
|
|
# them available, but only if the native OS/ARCH is the same as the
|
|
# OS/ARCH of the build target
|
|
if [ "$(go env GOOS)/$(go env GOARCH)" != "$(go env GOHOSTOS)/$(go env GOHOSTARCH)" ]; then
|
|
return
|
|
fi
|
|
if [ ! -x /usr/local/bin/runc ]; then
|
|
return
|
|
fi
|
|
echo "Copying nested executables into $dir"
|
|
for file in containerd containerd-shim-runc-v2 ctr runc docker-init rootlesskit dockerd-rootless.sh dockerd-rootless-setuptool.sh; do
|
|
cp -f "$(command -v "$file")" "$dir/"
|
|
done
|
|
}
|
|
|
|
[ -z "$KEEPDEST" ] && rm -rf "$DEST"
|
|
|
|
(
|
|
DOCKER_STATIC=1
|
|
GO_PACKAGE='github.com/moby/moby/v2/cmd/dockerd'
|
|
BINARY_NAME='dockerd'
|
|
source "${MAKEDIR}/.binary"
|
|
copy_binaries "$DEST"
|
|
)
|