9 lines
360 B
Bash
9 lines
360 B
Bash
# vim: ft=sh
|
|
|
|
# Script to restore toolbox after it was replaced with distrobox and removed the default 'toolbox' name
|
|
alias toolbox="$HOME/scripts/toolbox.sh"
|
|
alias butane='podman run --rm --interactive \
|
|
--security-opt label=disable \
|
|
--volume ${PWD}:/pwd --workdir /pwd \
|
|
quay.io/coreos/butane:release'
|