Nutshell
Pull Image
Create container from image
Start a container and mount Apache document root to a local folder in your workstation:
Start/Stop container
Connect container
List running containers
List all containers
List images
Delete container
Delete image
Save container as an image
Load an image from backup
Push image
Build an image
You can create custom images using docker
build
. For example, you can start from a base image (eg Debian) and the install custom software according to your needs (php, Apache, MySQL or whatever).
Transfer files
From local file system to running container:
From running container to local file system:
Docker info
Docker inspect
Use docker inspect to get information for a specific docker object (eg image, container, network, etc)
Last updated