Docker Tutorial For Devops Run Docker Containers

Tags:

Learn how to develop and deploy web applications with Docker technologies. Take your DevOps skills to the next level.

Last updated 2022-01-10 | 4.4

- Containerize a web-based application with a microservice approach and automate it using Dockerfile
- Design multi-container applications and automate the workflow using Compose
- Scale Docker workflow with Docker Swarm
- orchestrate and deploy a large-scale application across multiple hosts in the cloud

What you'll learn

Containerize a web-based application with a microservice approach and automate it using Dockerfile
Design multi-container applications and automate the workflow using Compose
Scale Docker workflow with Docker Swarm
orchestrate and deploy a large-scale application across multiple hosts in the cloud
Best practices of working with Docker technology in the field
In-depth knowledge about Docker technology and confidence to help your company or your own project to apply the right Docker deployment workflow and continuously deliver better software
Invaluable DevOps skills such as setting up continuous integration workflows
And much much more...

* Requirements

* A computer running Windows
* OSX or Linux.
* Knowledge of Git and Linux will be preferred but NOT required.
* Prior experience with Docker Technologies is NOT required.

Description

What is this course about:

This course covers all the fundamentals about Docker software and teach you everything you need to know about developing and deploying modern applications with Docker software.

In the end of this course, you will gain in-depth knowledge about Docker software and general DevOps skills to help your company or your own project to apply the right docker workflow and continuously deliver better software.

What will you learn from this course:

In particularly, you will learn:

  • Containerize a web-based application with a micro-service approach and automate it using Dockerfile.

  • Design multi-container applications and automate the workflow using Compose.

  • Scale Docker workflow with Docker Swarm, orchestrate and deploy a large-scale application across multiple hosts in the cloud.

  • Best practices of working with Docker software in the field.

  • In-depth knowledge about Docker software and confidence to help your company or your own project to apply the right Docker deployment workflow and continuously deliver better software.

  • Invaluable DevOps skills such as setting up continuous integration pipelines.


Why shall we learn Docker technologies:

Docker software is on the bleeding edge of technology today.  It is also one of the most compelling technologies of the last decade in terms of its disruption to software development, operations, systems architecture, testing and compliance practices.

Docker is becoming a must tool for developers. containers and the Docker’s approach gives you the opportunity to work without any need of dependencies. Docker allows developers to focus on the things which actually matters without worrying about the environment where the application runs. 

Tons of companies are using docker in production, today you have the access to that same virtualization technology right on your desktop. 


About the author:

In the past, James worked at many companies such as Amazon and Google. Now James is working at one of the top Silicon Valley startups specializing big data analysis.

During the past two years, James has been leading his team to dockerize their old monolithic applications with a micro-service approach.

James' company has gained massive benefits by running Docker in production. In this course, he is going to share with you his years of knowledge and best practices of working with docker in the real field.


Why DevOps skills?

Nowadays DevOps engineers are in great demand in the IT industry. Companies are looking for developers who can both develop and deploy the applications.

The average salary of a DevOps engineer is about $140,000 per year in Silicon Valley area which is 20% higher than the salary of a software engineer.

Master DevOps Skills means you will be staying ahead in the competitive job market!


Why choosing this course?

This course is very hands on, James has put lots effort to provide you with not only the theory but also real-life examples of developing Docker applications that you can try out on your own laptop.

James has uploaded all the source code to Github and you will be able to follow along with either windows, MAC OS or Linux.

In the end of this course, James is confident that you will gain in depth knowledge about Docker and general DevOps skills to help your company or your own project to apply the right docker workflow and continuously deliver better software.


30-day money-back guarantee!

You will get 30-day money-back guarantee from Udemy for this course.

 If not satisfied simply ask for a refund within 30 days. You will get full refund. No questions whatsoever asked.


Are you ready to take your DevOps skills and career to the next level, take this course now!

You will go from zero to Docker hero in 4 hours.

Who this course is for:

  • Anyone who want to fully understand how Docker technology works and learn how Docker technology is being used in the field.
  • DevOps, Developers, or QAs who want to advance their career by improving their DevOps skills.
  • Developers who want to learn how to develop and deploy containerized modern web applications with a micro-service approach.

Course content

7 sections • 49 lectures

Course Overview: Welcome to the Docker Technology World Preview 04:09

How to Take this Course and How to Get Support Preview 01:20

Text Lecture: How to Take this Course and How to Get Support Preview 00:01

Course Slides Preview 00:04

Introduction to Virtualization Technologies Preview 08:35

Docker Software's Client-Server Architecture Preview 01:36

Install Docker for Mac/Windows Preview 04:39

Step by step instructions to install docker on your local machine.

Install Docker Toolbox Preview 04:33

Important Concepts of Docker Technology Preview 04:50

In this lecture, we will get a conceptual understanding of some important Docker terminologies such as images, containers, registry and repositories. 

Run Our First Hello World Docker Container Preview 05:53

We will start our first Docker workflow: pull an image from Docker Hub, create and run a container from the image.

Deep Dive into Docker Containers Preview 05:01

In this lecture, we are going to deep dive into Docker containers. We will learn how to run containers in detached mode, how to use docker ps and docker inspect command, and how to specify docker container names.

Docker Port Mapping and Docker Logs Command Preview 03:42

Learn how to map container ports to host ports and use docker logs command.

Extra Learning: Deep Dive into Docker Logging Preview 00:01

Docker Image Layers Preview 02:17

Images are made up of layers. In this lecture, we will give an instruction to docker image layers.

Build Docker Images by using Docker Commit Command Preview 05:08

Learn how to create a Docker image by committing changes made in a container.

Build Docker Images by Writing Dockerfile Preview 07:22

Learn how to build Docker images by writing Docker files.

Dockerfile In-depth Preview 08:03

We will learn more Docker file instructions such as CMD, COPY and ADD, and the best practices to write Docker files. We will also cover how to take advantage of Docker cache to reduce build time and how to avoid aggressive caching.

Push Docker Images to Docker Hub Preview 04:43

Learn how to tag images and push images to Docker hub.

Containerize a Simple Hello World Web Application Preview 09:48

Text Direction: Containerize a Hello World Web Application Preview 00:02

Implement a Simple Key-value Lookup Service Preview 08:26

In this lecture, we will turn our hello world application into a simple key value lookup web app. We will start with implementing this key value lookup web app as a single service. Then, we would look into splitting this application into two small services and run them in two different containers and we will see how this naturally leads to a micro-service approach.

Create Docker Container Links Preview 05:31

We will see how to create docker links between the Redis container and our Docker app container and we will talk about how container link works behind the scenes.

Automate Current Workflow with Docker Compose Preview 07:24

Deep Dive into Docker Compose Workflow Preview 05:12

We will learn more about Docker compose workflows and introduce compose commands such as docker compose logs and docker compose build.

Extra Learning: Things to Watch out When Working with Docker Containers Preview 00:02

Introduction to Docker Networking Preview 02:02

None Network Preview 02:59

Bridge Network Preview 08:30

Host Network and Overlay Network Preview 03:06

D3: Text Lecture: Overlay Network Preview 00:00

Define Container Networks with Docker Compose Preview 03:31

Write and Run Unit Tests inside Containers Preview 03:55

We will see how we can write some unit tests for our application and run those tests inside a container.

Introduction to Continuous Integration Preview 06:54

In this lecture, we will introduce what is a continuous integration pipeline and how Docker workflow fits into it. Then we will configure our Github account for setting up a continuous integration pipeline.

Text Direction: Introduction to Continuous Integration Preview 00:09

Link CircleCI with Github Account for Setting up a CI Workflow Preview 09:36

Push Docker Images To DockerHub from CircleCI Preview 07:26

Trouble Shooting: Push Docker Images to Docker Hub Preview 00:16

Introduction to Running Docker Containers in Production Preview 04:32

Register Digital Ocean Account for Deploying Containerized Applications Preview 03:15

Deploy Docker Application to the Cloud with Docker Machine Preview 05:44

Text Direction: Deploy Docker Application to the Cloud with Docker Machine Preview 00:02

Introduction to Docker Swarm and Set up Swarm Cluster Preview 08:01

Deploy Docker App Services to the Cloud via Docker Swarm Preview 11:07

Extra learning Material: Dockers Monitoring Tools Preview 00:17

What is new in Docker 17.06 Preview 00:15

Docker's Native support for Kubernetes Preview 00:28

Future Learning Preview 03:17

Text Lecture: Future Learning Preview 00:03

Coupons to Our Other Courses Preview 00:34