You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/containers/index.md
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,10 +52,12 @@ Among them, Docker was one of the most popular mainstream container software too
52
52
- Portable
53
53
- Supports agile development
54
54
55
-
To know more about Containerization, we have couple of guides. Feel free to check them out.
55
+
???+ note "Containerization Guides"
56
56
57
-
-[Containerization: A Complete Guide](https://www.ibm.com/cloud/learn/containerization).
58
-
-[Containers: A Complete Guide](https://www.ibm.com/cloud/learn/containers).
57
+
To know more about Containerization, we have couple of guides. Feel free to check them out.
58
+
59
+
- [Containerization: A Complete Guide](https://www.ibm.com/cloud/learn/containerization).
60
+
- [Containers: A Complete Guide](https://www.ibm.com/cloud/learn/containers).
59
61
60
62
## Docker
61
63
@@ -81,27 +83,37 @@ These images are build from the `Dockerfile`.
81
83
- It specifies the operating system.
82
84
- It also includes things like environmental variables, ports, file locations etc.
83
85
84
-
If you want to try building docker images, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/) (Interactive Learning Platform).
86
+
???+ note "Interactive Learning"
87
+
88
+
If you want to try building docker images, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/){target="_blank"} (Interactive Learning Platform).
The standard unit where the application service is located or transported. It packages up all code and its dependencies so that the application runs quickly and reliably from one computing environment to another.
91
95
92
-
If you want to try deploying a docker container, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/9781788991315-video4_2/#t11m27s) (Interactive Learning Platform).
96
+
???+ note "Interactive Learning"
97
+
98
+
If you want to try deploying a docker container, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/){target="_blank"} (Interactive Learning Platform).
99
+
100
+
- [Deploying a Docker Container](https://learning.oreilly.com/videos/docker-for-the/9781788991315/9781788991315-video4_2/#t11m27s){target="_blank"}
93
101
94
102
### Docker Engine
95
103
96
104
Docker Engine is a program that creates, ships, and runs application containers. The engine runs on any physical or virtual machine or server locally, in private or public cloud. The client communicates with the engine to run commands.
97
105
98
-
If you want to learn more about docker engines, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/9781788991315-video7_1/)
106
+
???+ note "Interactive Learning"
107
+
108
+
If you want to learn more about docker engines, try this course on [O'Reilly](https://learning.oreilly.com/videos/docker-for-the/9781788991315/){target="_blank"} (Interactive Learning Platform).
The registry stores, distributes, and shares container images. It is available in software as a service (SaaS) or in an enterprise to deploy anywhere you that you choose.
103
115
104
-
**Docker Hub** is a popular registry. It is a registry which allows you to download docker images which are built by different communities. You can also store your own images there. You can check out various images available on docker hub [here](https://hub.docker.com/search?q=&type=image).
116
+
**Docker Hub** is a popular registry. It is a registry which allows you to download docker images which are built by different communities. You can also store your own images there. You can check out various images available on docker hub [here](https://hub.docker.com/search?q=&type=image){target="\_blank"}.
0 commit comments