Docker Container For Beginners

Tags: Docker

Dive into the world of Docker and learn about Dockerfiles and Container Management

Last updated 2022-01-10 | 4

- Container concepts in docker
- Docker container management
- Docker image management

What you'll learn

Container concepts in docker
Docker container management
Docker image management
Basics of Dockerfile

* Requirements

* Working knowledge of Unix/Linux

Description


Containerization of the applications is going on in the full swing across the IT industry. Docker's course covers the fundamental concepts of Docker containers. Along with the concepts it also covers the most useful commands related to container management, image management, and Dockerfile. After studying this course one would be ready to dive deeper into the world of container orchestration.

Docker's course becomes the necessary prerequisite for learning Docker Swarm and Kubernetes.

Enroll now!! see you in class.


Happy Learning!
Team Edyoda

Who this course is for:

  • Freshers who are new to Docker

Course content

3 sections • 11 lectures

Introduction to Docker Container Preview 09:57

In this video we start from introducing the basic concept of container, what is the problem that it solves and why it is needed at all.

Launching a Linux machine for Docker Lab Preview 02:46

In this video an AWS EC2 instance with Amazon Linux 2 AMI is launched where eventually docker will be installed. We will do all the hands-on exercises on this machine.

You can skip this video if you have your own linux machine to do hands-on.

Docker Installation Preview 02:29

In this video we will cover:

  • Docker installation

  • Starting Docker service

  • Checking the status of Docker daemon

  • Starting the first container

Docker Components Preview 05:29

In this video we will talk about components of Docker and high level workflow. This includes:

  • Docker Client

  • Docker Host

  • Docker registry

Docker Basic Terminology Preview 08:33

In this video we explore frequently used words and terminology of Docker.

Launching your first ubuntu container Preview 11:07

In this video, we will launch an ubuntu container.

Basic Docker Container Commands Preview 09:57

In this video we will talk about how to work with containers using various docker commands.

We will cover:

  • How to run containers?

  • How to start containers?

  • How to attach to a running containers?

  • How to inspect containers?

  • How to move out of containers?

    and so on...

Basic Docker Image Commands Preview 11:27

In this video I walk you through some basic docker image commands.

We will see :

  • How to pull docker image?

  • How to list out images ?

  • How to delete images ?

  • How to take backup of images in a tar?

  • How to restore images?

  • How to delete unnecessary images?

    and so on ...

Creating a Docker image without Dockerfile Preview 11:06

In this video I will talk about how to create an image from a container using docker commit.

How to rename/tag these images to push into docker image registries.

We have NOT used Dockerfile in this video.

Basic Dockerfile Directives Preview 07:04

In this video we have explored various Dockerfile directives, their meaning and usage.

Containerizing using a Dockerfile Preview 08:03

In this video we will see how to create a docker image from a python application. This time we use a Dockerfile to do this.