Skip to content

Commit

Permalink
Use long version arguments for docker-wipe
Browse files Browse the repository at this point in the history
  • Loading branch information
pkissling committed May 29, 2024
1 parent c882576 commit 4011943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export GIT_CONFIG_KEY_0="gpg.program" GIT_CONFIG_VALUE_0="${HOMEBREW_PREFIX}/bin

# Aliases (must be one of the last commands to overwrite zsh aliases)
alias cat="bat"
alias docker-wipe="(docker rm -f $(docker ps -a -q) || true) && docker system prune --all --force --volumes"
alias docker-wipe="(docker rm --force $(docker ps --all --quiet) || true) && docker system prune --all --force --volumes"
alias g="git"
alias json="pbpaste | jq '.'"
alias k="kubectl"
Expand Down

0 comments on commit 4011943

Please sign in to comment.