I guess I changed some things. Legit do not know what they were

This commit is contained in:
2023-04-06 01:18:55 -05:00
parent ea5b5126b6
commit 1ff4285cb5
2 changed files with 5 additions and 5 deletions

View File

@@ -105,10 +105,9 @@ alias pang='ping -i 10 -v -a'
alias mnts='mount | column -t'
# The history command but shorter
alias h='history'
# Type way fewer letters
alias doco='docker compose'
# One of my most used commands. Restart a docker compose situation entirely
alias redoco='docker compose down; docker compose up -d'
# Lazy docker composing. Set the variable somewhere.
alias doco="$DOCKER_COMPOSE_COMMAND"
alias redoco="$DOCKER_COMPOSE_COMMAND down && $DOCKER_COMPOSE_COMMAND up -d"
# Regain all that space taken up by projects you abandoned
alias docprune='docker image prune && docker network prune && docker container prune && docker volume prune'
# Send things instantly to a pastebin. Pipe other commands into this to share their output.