Merge pull request #43061 from math2001/43020-use-rootless-after-setup
docker-rootless-setuptools.sh: use context after install
This commit is contained in:
commit
8308f749f2
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue