summaryrefslogtreecommitdiff
path: root/dot_local/share/sh/docker.fish
blob: e04437b4a0e8e8ffdd7d0ba216495f6fb94e8514 (plain) (blame)
1
2
3
4
5
6
7
8
9
if . hascmd podman
    alias docker=podman
else if . hascmd docker
else
    return
end

alias dit='docker run -it --rm'
alias drun='dit -v (pwd):/pwd:Z -w /pwd'