Virtual Machines ▸Docker Architecture ▸Docker Images ▸Docker Hub ▸How to run Containers ▸DEMO: Running a web server inside a Container ▸DEMO: Deploy a Web Application on Azure using Containers ▸Next Steps: Orchestrators - DevOps ▸Q & A
a piece of software that includes everything needed to run it: code, runtime, system tools, system libraries, settings. Docker WHAT IS A CONTAINER https://www.docker.com/what-docker
series of layers. Each layer represents an instruction in the image’s Dockerfile. Each layer except the very last one is read-only. An image is an inert, immutable, file that's essentially a snapshot of a container. The’ll produce a container when started with “run”. Images are stored in a Docker registry such as “Docker Hub” When you download an image, it can then be used (as a template) to spin up multiple running Containers in your own environment.
allows you to link to code repositories, build your images and test them, stores manually pushed images. It provides a centralized resource for container image discovery, distribution and change management, user and team collaboration, and workflow automation throughout the development pipeline. https://hub.docker.com