9 examples for docker
# list all docker images
# - assumes the following alias exists
# alias docker="sudo docker -H tcp://localhost:2375"
# tip a bro some bitcoin 1LL1Q1cSSTDPZxWXp2XcDWfZkHGb7rps6n
docker images -a
# list all docker containers
# - assumes the following alias exists
# alias docker="sudo docker -H tcp://localhost:2375"
# tip a bro some bitcoin 1LL1Q1cSSTDPZxWXp2XcDWfZkHGb7rps6n
docker ps -a
# Start bash in a new ubuntu container.
# This will download the ubuntu image if it's not already installed.
docker run -i -t ubuntu /bin/bash
# To be able to run on OS X GUI apps you have to be running into another terminal: socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
# And you start the docker container with:
docker run --rm --name spotify -e DISPLAY=192.168.99.1:0 jess/spotify
# Short for the following set of commands:
# docker rm -v $(docker ps -aq -f 'status=exited')
# docker rmi $(docker images -aq -f 'dangling=true')
# docker volume rm $(docker volume ls -q -f 'dangling=true')
docker system prune
# minimum docker command
# - will display help
# - -H is the docker host daemon tcp endpoint, usually tcp://localhost:2375
# tip a bro some bitcoin 1LL1Q1cSSTDPZxWXp2XcDWfZkHGb7rps6n
sudo docker -H tcp://localhost:2375
# Remove all the images containing TOKEN in their names
docker rmi -f $(docker images | grep 'TOKEN' | awk {'print $3'})