1
0
dotfiles/.config/zsh/alias/podman.zsh

5 lines
159 B
Bash
Raw Normal View History

2021-09-29 11:26:06 +03:00
#!/bin/zsh
2021-10-29 22:35:35 +03:00
run() { command podman run ${TERM:+-e "TERM=$TERM"} --network host --rm -it "$@" ; }
2021-10-13 14:32:05 +03:00
run-sh() { run --entrypoint='["/bin/sh"]' --user=0:0 "$@" ; }