Docker
An open platform for developing, shipping, and running applications

Docker is a platform to containerize OS's and all necessary dependencies. It is a way to package applications, and the associated dependencies into a single unit called an image. This image can then be shared and run as a container, either locally as a developer or remotely on a production server.
Commands:
Get version:
docker versionBuild docker image:
docker build -t $IMAGENAMEPull docker repo:
docker pull $URLRun image in container:
docker run $IMAGENAMECreate debian interactive container:
docker run -it debian
Last updated