Skip to content

Commit

Permalink
docker-rootless-setuptools.sh: use context after install
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu PATUREL <mathieu.paturel@gmail.com>
  • Loading branch information
math2001 committed Dec 6, 2021
1 parent f6848ae commit 7c17ad8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions contrib/dockerd-rootless-setuptool.sh
Expand Up @@ -364,6 +364,11 @@ cli_ctx_create() {
"${BIN}/docker" context create "${name}" --docker "host=${host}" --description "${description}" > /dev/null
}

cli_ctx_use() {
name="$1"
"${BIN}/docker" context use "${name}" > /dev/null
}

cli_ctx_rm() {
name="$1"
"${BIN}/docker" context rm -f "${name}" > /dev/null
Expand All @@ -385,6 +390,9 @@ cmd_entrypoint_install() {
cli_ctx_create "${CLI_CONTEXT}" "unix://${XDG_RUNTIME_DIR}/docker.sock" "Rootless mode"
fi

INFO "Use CLI context \"${CLI_CONTEXT}\""
cli_ctx_use "${CLI_CONTEXT}"

echo
INFO "Make sure the following environment variables are set (or add them to ~/.bashrc):"
echo
Expand All @@ -393,6 +401,7 @@ cmd_entrypoint_install() {
echo "export XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR}"
fi
echo "export PATH=${BIN}:\$PATH"
echo "Some applications may require the following environment variable too:"
echo "export DOCKER_HOST=unix://${XDG_RUNTIME_DIR}/docker.sock"
echo

Expand Down

0 comments on commit 7c17ad8

Please sign in to comment.