mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
eef85648e4
These scripts have not been used for a while now, and should not be used again because they are for releasing docker, not moby Signed-off-by: Daniel Nephin <dnephin@docker.com>
29 lines
833 B
Bash
29 lines
833 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
rm -rf "$DEST"
|
|
|
|
install_binary() {
|
|
local file="$1"
|
|
local target="${DOCKER_MAKE_INSTALL_PREFIX:=/usr/local}/bin/"
|
|
if [ "$(go env GOOS)" == "linux" ]; then
|
|
echo "Installing $(basename $file) to ${target}"
|
|
mkdir -p "$target"
|
|
cp -f -L "$file" "$target"
|
|
else
|
|
echo "Install is only supported on linux"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
(
|
|
DEST="$(dirname $DEST)/binary-daemon"
|
|
source "${MAKEDIR}/.binary-setup"
|
|
install_binary "${DEST}/${DOCKER_DAEMON_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_RUNC_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_CONTAINERD_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_CONTAINERD_CTR_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_CONTAINERD_SHIM_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_PROXY_BINARY_NAME}"
|
|
install_binary "${DEST}/${DOCKER_INIT_BINARY_NAME}"
|
|
)
|