-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocker Learnings
More file actions
51 lines (31 loc) · 980 Bytes
/
Docker Learnings
File metadata and controls
51 lines (31 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
https://cognizant.udemy.com/course/docker-for-beginners-j/learn/lecture/40884150#overview
Docker is used for containerization.
-- add all your softwares into one place and transfer the image.
docker Image -- blue print of a
-- it is light weight file of your running container.
docker image
------------
-- it gives all the images which are present.
docker ps
---------
-- it gives all the running images which are running
docker ps -a
-------------
-- it gives all the images existing.
docker help
-----------
-- gives all the commands needed.
docker rm ID(needs container Id)
docker rmi ID(needs Image Id).
docker search
-------------
to search the images which has to be pulled.
docker pull
-----------
to pull images them from docker hub.
docker create
-------------
docker start
-------------
steps : docker -- search (name) -> pull (name) -> create (UseId) -> start (UseId). also stop (UseId):
we can also puase : docker pause (use-Id) :