Mercurial > hg > zsh-env
view zshrc-docker @ 136:0348abf21fbe
add another alias for listing docker images with size
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 04 Jul 2018 10:34:22 +0200 |
parents | 23f027afc87f |
children | 8b961f7d78d9 |
line wrap: on
line source
# # Useful aliases and functions for docker # alias dim="docker images --format 'table {{.Repository}}\t{{.ID}}\t{{.Tag}}'" alias dims="docker images --format 'table {{.Repository}}\t{{.ID}}\t{{.Tag}}\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 }