From the course: DevOps Foundations: Your First Project

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Installing Docker

Installing Docker

From the course: DevOps Foundations: Your First Project

Start my 1-month free trial

Installing Docker

- [Instructor] To get started on our journey, we're going to install Docker. Docker is a platform for running applications and their dependencies in isolated environments called containers, on nearly any operating system. With Docker, you don't have to think about what kind of machine your application will run on or whether the machine you're running it on has the right libraries installed in it. Everything that the application requires is packaged into the container and the application will start, run and behave the same way on any system that supports the docker demon. Additionally and unlike virtual machines, containers are much lighter, start faster and are easier to distribute and modify, because docker containers virtualize the operating system kernel not actual hardware. This is going to help us in our journey towards diversifying our app for three reasons. First, because applications in docker containers behave the…

Contents