Skip to content

Commit

Permalink
Fix docker-wipe alias
Browse files Browse the repository at this point in the history
  • Loading branch information
pkissling committed May 31, 2024
1 parent 4011943 commit 6b5eead
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 --force $(docker ps --all --quiet) || true) && docker system prune --all --force --volumes"
alias docker-wipe='docker rm --force $(docker ps --all --quiet) 2>/dev/null || true; docker system prune --all --force --volumes'
alias g="git"
alias json="pbpaste | jq '.'"
alias k="kubectl"
Expand Down

0 comments on commit 6b5eead

Please sign in to comment.