Want to install it?
Docker allows you to build and run containers.
Containers provide isolation of resources to a program such as:
An image is a virtual disk that you provide to docker in order to run a container.
You can get many images such as Ubuntu, Python, etc
A container must be created from an image.
Images on your local machine can be found with docker image ls
Images can be used by calling their name:label or by calling their ID directly
Maps a directory in your container to a directory on your computer.
Creates a virtual filesystem that's stored within docker that is mapped to a directory in one or more containers.
In memory mount for data that will be lost when the container stops.