Level 2:
1 / 1 / 2025
TASK 6: DOCKER
Task Requirements:
Learn about Docker containers, images, and Docker files.
Complete the Docker getting started course.
Task Work:
https://docs.google.com/document/d/1X2_uPttecl0CscIPEiF3QF8io3U1-Hj4Hn58zWi3CJk/edit?usp=sharing
Brief description:
-
Docker file: It is a text file that contains a series of instructions that define how to build a Docker image. It provides a blueprint for the Docker image, specifying the steps needed to set up the environment, install dependencies, copy files, and configure the application inside the Docker container.
-
Docker Image:Docker images are the blueprints or templates used to create Docker containers. An image is a read-only file system that contains everything needed to run an application, including the application code, libraries, environment variables, dependencies, and configurations. When you run a Docker image, it creates a container that can execute the application in the isolated environment defined by the image.
-
Docker container: A lightweight, standalone, executable package of software that includes everything needed to run an application: the code, runtime, libraries, and dependencies.
Glimpse of the course