|
1 |
| -# DevOps Notes |
2 |
| -This branche is create for store different DevOps tools cheat sheet. Feel free to use, contribute, modify for any type of use case. |
| 1 | +# Docker documentation |
| 2 | + |
| 3 | +# Table of contents |
| 4 | +1. [Docker Introduction](#introduction) |
| 5 | + 1. [What is docker](#dockerIntroduction) |
| 6 | + 2. [why docker](#dockerIntroduction) |
| 7 | + 3. [How to install docker](#dockerIntroduction) |
| 8 | + 4. [Docker architecture](#dockerIntroduction) |
| 9 | +2. [Docker File](#docker-file) |
| 10 | + 1. [Introduction to docker file](#subparagraph1) |
| 11 | + 2. [Docker file cheat sheet](#file-command) |
| 12 | +3. [Docker Image](#paragraph1) |
| 13 | + 1. [Introduction to docker Image](#subparagraph1) |
| 14 | + 2. [Image cheat sheet](#file-command) |
| 15 | +4. [Docker container](#paragraph2) |
| 16 | + 1. [Introduction to docker container](#subparagraph1) |
| 17 | + 2. [Container cheat sheet](#file-command) |
| 18 | +5. [Docker networking](#networking) |
| 19 | + 1. [Introduction to docker networking](#subparagraph1) |
| 20 | + 2. [Networking cheat sheet](#file-command) |
| 21 | +6. [Some miss conception about docker](#docker-misconception) |
| 22 | +7. [Best practices](#best-practices) |
3 | 23 |
|
4 |
| -# DevOps Roadmap |
5 |
| -DevOps is the combination of two words, Here the mearning Dev is development and the meaning of Ops is operations. Its a set of practice or philosophy. Not any tools. For become a devOps engineer we have to learn differnt concept, tools and technology. Below we are trying to show a roadmap about how to become a DevOps engineer. |
| 24 | +#introduction |
6 | 25 |
|
7 |
| -1. Porgramming |
8 |
| -2. Operatinng system |
9 |
| -3. Networking |
10 |
| -4. Tools: \ |
11 |
| - 4.1 Version control: GitHub \ |
12 |
| - 4.2 Containirazition: Docker, Kubernetes \ |
13 |
| - 4.3 Monitoring: nagios \ |
14 |
| - 4.4 Jenkins\ |
15 |
| - 4.5 GitHub Action \ |
16 |
| - 4.6 Terraform |
17 | 26 |
|
18 |
| -### Projects we should do: |
19 |
| -3 Tier architecture deployment \ |
20 |
| -Container based deployment |
| 27 | +### Networking cheat sheet |
21 | 28 |
|
22 |
| -### Certification we can take |
23 |
| -1. AWS : AWS Cloud practitioner => |
24 |
| -2. Azure : Azure 900 |
25 |
| -3. GCP : |
| 29 | +| (__Networking Command__) | (**Networking Description**) | |
| 30 | +| --------------- | --------------- | |
| 31 | +|```docker network ls``` | List networks | |
| 32 | +|```docker network create``` | Create a network | |
| 33 | +|```docker network connect``` | Connect a container to a network | |
| 34 | +|```docker network prune``` | Remove all unused networks | |
| 35 | +|```docker network rm``` | Remove one or more networks | |
0 commit comments