From 40df316fc8e63812b6c90bf5ef61517738fefca7 Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Wed, 24 Jan 2024 19:39:10 +0000 Subject: [PATCH] fixed docport --- .bash_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bash_aliases b/.bash_aliases index 6e7a650..a40e742 100755 --- a/.bash_aliases +++ b/.bash_aliases @@ -115,7 +115,7 @@ alias redog="$DOCKER_COMPOSE_COMMAND down && $DOCKER_COMPOSE_COMMAND up -d; $DOC alias dolog="$DOCKER_COMPOSE_COMMAND up -d; $DOCKER_COMPOSE_COMMAND logs -f" alias watchtower="docker run -d --restart unless-stopped --name 'watch-$(date +%H%M)' -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower " alias onetower="docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once" -alias docport="docker container ls --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" -a" +alias docport='docker container ls --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" -a' # Regain all that space taken up by projects you abandoned alias docprune='echo "Pruning images"; docker image prune -f && echo "Pruning networks"; docker network prune -f && echo "Pruning containers"; docker container prune -f && echo "Pruning Volumes"; docker volume prune -f' # Send things instantly to a pastebin. Pipe other commands into this to share their output.