Introduction to Containerization
Learn how to containerize an application using Docker.
We'll cover the following
Docker makes it easy to package applications as images and run them as containers. We call this process containerization. This chapter will walk you through the entire process.
Containerizing an app: A quick overview
Docker aims to make it easy to build, ship, and run applications. We call this containerization, and the process is as follows:
- Write your application and create the list of dependencies.
- Create a Dockerfile that tells Docker how to build and run the app.
- Build the app into an image.
- Push the image to a registry (optional).
- Run a container from the image.
Get hands-on with 1300+ tech skills courses.