• Post category:StudyBullet-17
  • Reading time:5 mins read

Docker for absolute beginners
Learn how to work with docker images and container in a very clear and easy way

What you will learn

Pull, list and remove docker images

Create docker containers using docker images

Stop, list and remove docker containers

Learn docker containers port mapping

Create, list and remove volumes in docker

Learn volume mounting in docker

Learn how to write a Dockerfile

Build your own docker images

Dockerize a flask application

Description

Docker is a powerful tool for packaging, shipping and running applications in docker containers. It makes the process of deploying application super easy.

Deploying an application with docker is as easy as running a simple docker run command

This course will take you in a step-by-step way to start working the docker cli to manage docker containers, docker images and to build your own docker images

By taking this course you will have the required skills that you need to start building your own images and playing with docker container, learn advanced docker topics or learn one the orchestration tools like Docker Swarm, MESOS or Kubernetes which is the most popular orchestration tool


Get Instant Notification of New Courses on our Telegram channel.


Requirements for this Course:

  • Basic Linux knowledge

Who this course is for:

  • The course isΒ  for developers who wants to start learning the DevOps tool known as Docker
  • This course is ideal for people who are new to DevOps and who want to start their career in DevOps

What you’ll learn

  • what is docker and why we need it?
  • Docker images VS docker containers
  • Working with docker images
  • Working with docker containers
  • Working with docker volumes
  • Build your own docker image
  • Store your docker images in your Dockerhub account
English
language

Content

Course introduction

Introduction
What is docker? and why we need it?
Docker images VS docker containers

Working with docker images

Installing docker
Pull – list – remove docker images

Working with docker containers

Run – stop – remove docker containers
Execute commands in docker containers
Run a container in attached or detached mode
Port mapping in docker

Working with docker volumes

Create – list – remove docker volumes
How the data is stored by containers without docker volumes
Mounting a docker volume to a docker container

Creating docker images

Building a docker image using Dockerfile
Dockerize a Flask application
Push the image to Docker Hub