Skip to content

Commit 9e96d7b

Browse files
committed
learned uses of Docker Hub Registry Images
1 parent 80a19e7 commit 9e96d7b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docker-2.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Docker Container Images:
22
### How can we find them and how to build it?
33

4+
* This is all about the images by building blocks of the container.
5+
* Think about how to find good images and in the whole process and how to manage those images.
6+
* TRy to manage the local image Cache when we download those images and created them on our own machines.
7+
* It is an app binaries and binaries which is for our app that we are working on and we need to know the way it run in th metadata.
8+
* Defintion: An image is an ordered collection of the root of filesystems changes and the corresponding execution parameters for uses including a container runtimes.
9+
* Inside this image there is actually no complete OS, It does not have kernel and kernel modules such as, drives.
10+
* Smalll as one file in our built app as binary such as, golang static binary.
11+
* It is big as a Ubuntu distro with apt, and Apache, PHP as well as more installation.
12+
413
Also we can read this link:
514
```
615
https://github.com/moby/moby/blob/master/image/spec/v1.md
@@ -13,6 +22,15 @@ https://docs.docker.com/engine/reference/builder/
1322
```
1423

1524
## Using Docker Hub Registry Images :
25+
* The fundamentals of Docker Hub
26+
* We can search in docker official or in other good public images.
27+
* We can download images and basics of the image tags.
28+
* We can use Alphine image or other iages options.
29+
* Sign up or i in docker hub: https://tinyurl.com/f9fnyamd
30+
* Docker Hub has its apt package system for containers.
31+
* Docker official images as well as uses of them.
32+
* HOw to discern good public images.
33+
* Uses of different base images such as, debian or alphine.
1634
```
1735
http://hub.docker.com
1836
@@ -29,6 +47,9 @@ docker pull nginx:1.11.9-alpine
2947
docker image ls
3048
```
3149
### Images and Their Layers: Discover the Image Cache
50+
51+
* Here, we can check images and its layers.
52+
3253
```
3354
docker image ls
3455
@@ -114,6 +135,8 @@ docker image ls
114135
docker push
115136
```
116137
## Build Your Own Dockerfile and Run Containers :
138+
139+
* Building our own image is quite fun part of the container images.
117140
```
118141
cd dockerfile-assignment-1
119142

0 commit comments

Comments
 (0)