view zshrc-docker @ 132:7f20ec5f5726

bugfix for the PATH generation when switching JDKs
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 13 May 2018 13:56:19 +0200
parents 23f027afc87f
children 0348abf21fbe
line wrap: on
line source

#
# Useful aliases and functions for docker
#

alias dim="docker images --format 'table {{.Repository}}\t{{.ID}}\t{{.Tag}}'"
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 }