Skip to content

Instantly share code, notes, and snippets.

@pfigue
Last active August 29, 2015 14:16
Docker Cheatsheet

List of Docker containers

docker ps  # shows running containers
docker ps --all  # shows all installed containers

SSH into Docker container

docker attach 665b4a1e17b6/image-name

Pulling a docker image from Docker Hub

docker pull wordpress:fpm  # fpm is a tag for wordpress image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment