view zshrc-docker @ 140:abc3d303adde

add alias to ping a public IP
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 04 Jul 2018 17:04:39 +0200
parents 8b961f7d78d9
children fe986adeadeb
line wrap: on
line source

#
# Useful aliases and functions for docker
#

alias dim="docker images --format 'table {{.Repository}}\t{{.Tag}}\t{{.ID}}'"
alias dims="docker images --format 'table {{.Repository}}\t{{.Tag}}\t{{.ID}}\t{{.Size}}'"
alias dlf="docker logs -f"
alias doc="docker-compose"
alias doker=docker
alias dpa="docker ps -a --format 'table {{.ID}}\t{{.Image}}\t{{.Status}}\t{{.Names}}'"

dex() { docker exec -it $1 /bin/sh }