Basic Terminology Flashcards
Menut for Adding DockerSupport from Visual Studio
What is Docker?
Docker is a set of platform as a service products that uses OS-level virtualization to deliver software in packages called containers.
What is a docker container image?
An image, or more correct, a Docker container image is a lightweight, standalone, executable package of software that includes everything needed to run an application: code, runtime, system tools, system libraries and settings.
What is a docker container?
A container image becomes a container at runtime when they run on Docker Engine
What is a Docker Engine?
Docker Engine is a container runtime that runs on various Linux (CentOS, Debian, Fedora, Oracle Linux, RHEL, SUSE, and Ubuntu) and Windows Server operating systems…
What is Docker Hub?
Docker Hub is a service provided by Docker for finding and sharing container images with your team.
What is a Dockerfile?
A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.