|
@ -12,6 +12,15 @@ list-commands(){ |
|
|
typeset -F | cut -d ' ' -f 3 | grep -v '^_' | sort |
|
|
typeset -F | cut -d ' ' -f 3 | grep -v '^_' | sort |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
# start rootless podman socket |
|
|
|
|
|
podmanStart(){ |
|
|
|
|
|
set -x |
|
|
|
|
|
systemctl --user enable podman.socket |
|
|
|
|
|
systemctl --user start podman.socket |
|
|
|
|
|
systemctl --user status podman.socket |
|
|
|
|
|
echo export DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
# dockerLinux [imagename=ubuntu:22.40] . Quick shell inside given linux container |
|
|
# dockerLinux [imagename=ubuntu:22.40] . Quick shell inside given linux container |
|
|
dockerLinux(){ |
|
|
dockerLinux(){ |
|
|
set -x |
|
|
set -x |
|
|