Docker MasterClass : Docker, Docker Compose & Docker Swarm for DevOps
LevelUp, DevOps Professional
Watch this class and thousands more
Watch this class and thousands more
Lessons in This Class
-
-
1. Docker Course RoadMap & Intro
5:38 -
2. Docker Course Location | GIT Location
1:27 -
3. Docker Available Editions
8:36 -
4. Docker on Windows
14:47 -
5. Docker For Mac Machine
19:05 -
6. Create Linux Machine on Cloud
12:38 -
7. Docker on Linux Machine
21:29 -
8. Check Docker Installation and Configuration
14:14 -
9. Start First Container On Docker
29:10 -
10. Stop and Remove Containers
20:12 -
11. Container vs Virtual Machine
12:38 -
12. Docker Internal Processing
4:44 -
13. Assignment Manage : Multiple Containers
7:44 -
14. Assignment Answer : Manage Multi Containers
14:46 -
15. Docker CLI Monitoring
13:25 -
16. Start Container in Interactive Mode
6:51 -
17. Run Commands in Running Container
9:37 -
18. Docker Network Introduction
6:16 -
19. Explore Container Network
11:11 -
20. Docker CLI Network List Inspect
7:00 -
21. Docker Netwrok : Create Connect Disconnect
10:45 -
22. Docker Network DNS
11:20 -
23. What is Docker Image
5:20 -
24. Docker Hub Repository
12:20 -
25. Concept of Docker Image Layers
5:36 -
26. Docker Image Tagging
7:49 -
27. Upload Docker Image to Cloud
12:42 -
28. Basic of Dokcerfile
2:38 -
29. Docker file Instructions
14:18 -
30. Build Custome Docker Image
20:25 -
31. Extend Official Docker Images
10:09 -
32. Assignment : Docker Images
2:21 -
33. Assignment Answer : Build Docker Image
10:40 -
34. Persistant Data Problem in Docker
6:08 -
35. Persistent Data : Volumes in Docker
13:15 -
36. Persistent Data : Bind Mounts
11:20 -
37. Assignment : Data Volumes
2:06 -
38. Assignment Answer : Data Volumes
25:30 -
39. Assignment : Bind Mount
0:59 -
40. Assignment Answer : Bind Mounts
10:43 -
41. Docker Compose Introduction
4:52 -
42. Docker Compose YML File
3:51 -
43. Run MYSQL & WORDPRESS via Docker Compose
15:32 -
44. Docker Compose : Build Application From Scratch
18:11 -
45. Docker Swarm Introduction: SWARM
11:58 -
46. Docker Swarm Terminology
7:06 -
47. Create Service in Docker Swarm
16:47 -
48. Create Docker Swarm Cluster
19:36 -
49. Networking in Docker Swarm
13:52 -
50. Docker Swarm Traffic Management
9:31 -
51. Assigment : Create Multi node Service
8:54 -
52. Assignment Answer : Create Multiple Services
16:40 -
53. Deploy Docker Stack in Docker Swarm
18:16 -
54. Docker Swarm Stack : Scale Application
14:09 -
55. Docker Swarm : Persistent Data in Docker Swarm Application
10:42 -
56. Swarm : Deploy Distributed Application
13:52 -
57. Swarm Secrets Introduction
8:09 -
58. Create Docker Service with Secrets
11:26 -
59. Deploy Stack with Docker Swarm Secrets
15:54 -
60. Zero Downtime Service Upgrade
18:51 -
61. HealthCheck in Docker Swarm
16:18 -
62. Constraint Container in Swarm
17:59 -
63. Service Constraints in YML File
7:01
-
-
- --
- Beginner level
- Intermediate level
- Advanced level
- All levels
Community Generated
The level is determined by a majority opinion of students who have reviewed this class. The teacher's recommendation is shown until at least 5 student responses are collected.
320
Students
--
Projects
About This Class
Docker Training: Containers by learning Docker Ecosystem, Creating images, Services, Docker Swarm & Compose.
Download the Project Code :
Docker Training: Become Job Ready in Docker Containerization by learning Docker Ecosystem, creating Docker images using Dockerfiles, Installing Ubuntu Linux and CentOS Linux, Granting Docker Control to Non-root Users, Security, Orchestration, Network Configuration Files, etc. You will also get an exposure to industry based real-time projects in various verticals.
Live Project Preparation with Multiple Application Development & Integration with Docker.
After taking this course, you'll be able to:
-
Use Docker in your daily developer and/or sysadmin roles
-
Make Dockerfiles and Compose files
-
Build multi-node Swarm clusters and deploying H/A containers
-
Build a workflow of using Docker in dev, then test/CI, then production with YAML
-
Protect your keys, TLS certificates, and passwords with encrypted secrets
-
Keep your Dockerfiles and images small, efficient, and fast
-
Develop locally while your code runs in a container
-
Protect important persistent data in volumes and bind mounts
-
Lead your team into the future with the latest Docker container skills!
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 matter without worrying about the environment where the application runs.
Tons of companies are using docker in production, today you have access to that same virtualization technology right on your desktop.
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 the 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!
Some of the many cool things you'll do in this course:
-
Edit web code on your machine while it's served up in a container
-
Lockdown your apps in private networks that only expose necessary ports
-
Create a 3-node Swarm cluster in the cloud
-
Use Virtual IP's for built-in load balancing in your cluster
-
Optimize your Dockerfiles for faster building and tiny deploys
-
Build/Publish your own custom application images
-
Create your own image registry
-
Use Swarm Secrets to encrypt your environment configs, even on disk
-
Deploy container updates in a rolling always-up design
-
Create the config utopia of a single set of YAML files for local dev, CI testing, and prod cluster deploys
-
And so much more...
Hands-on Class Project
Hey everyone!
This Course Codebase can be downloaded from public GIT Hub repo: https://github.com/anshulc55/Docker_for_DevOps
All you have to do is follow along with the videos and download the code from the attached Repo and you'll be well on your way to victory when it comes to developing and deploying apps with Docker.
Project 1
Write a Dockerfile to create a new file called "FirstFile.txt" in an Ubuntu 16.04 Container under "/mycontainer" directory.
When we open the file it should show the text "Hi! I am a <YOUR_NAME> and I wrote this file... This is really cool right?".
Project 2
Write a Dockerfile that sets up an Apache Docker image. Follow the hints given below for a better understanding of the question.
Hints:
- For this example, use Ubuntu 14.04
- You can use the internet to find proper commands to install Apache on Ubuntu (14.04)
- Set the log directory environment variable APACHE_LOG_DIR=/var/log/apache
- Mount the Log Directory on Host machine
- Make sure the container would trigger the Apache Server Control interface which can be located at /usr/sbin/apachectl if the installation is successful.
Project 3
Choose any Five Docker Images created during this masterclass and push them to your Docker hub account. Make sure to create individual public repositories for each Docker Image and share the screenshot of the list of repositories.
Project 4:
Host a WordPress blog on HostMachine using Docker Swarm and craft a blog about how you did it. Share the screenshots of your Docker Swarmobjects and the blog itself.
Class Ratings
Why Join Skillshare?
Take award-winning Skillshare Original Classes
Each class has short lessons, hands-on projects
Your membership supports Skillshare teachers