forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker.json
More file actions
108 lines (102 loc) · 3.83 KB
/
Copy pathdocker.json
File metadata and controls
108 lines (102 loc) · 3.83 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"id": "docker-cheat-sheet",
"title": "ডকার",
"slug": "docker-cheat-sheet",
"description": "ডকার চিটশিট",
"colorPref": "#000",
"contents": [
{
"title": "ডকার ভারশন",
"items": [
{
"definition": "ডকার ভারশন",
"code": "docker --version"
},
{
"definition": "ডকার ইনস্টলেশন সম্পর্কে আরও বিস্তারিত দেখতে",
"code": "docker info"
},
{
"definition": "টেস্ট ডকার ইনস্টলেশন",
"code": "docker run hello-world"
},
{
"definition": "ডকার সিএলআই কমান্ড",
"code": "docker container --help"
}
]
},
{
"title": "ডকার কন্টেইনার কমান্ডসমূহ",
"items": [
{
"definition": "List of all ডকার কন্টেইনার, even not running",
"code": "docker ls -a"
},
{
"definition": "List of all ডকার কন্টেইনার",
"code": "docker ps -a"
},
{
"definition": "List of all ডকার কন্টেইনার",
"code": "docker ps -a"
},
{
"definition": "List of running ডকার কন্টেইনার",
"code": "docker ps"
},
{
"definition": "List of stopped ডকার কন্টেইনার",
"code": "docker container ls -f 'status=exited'"
},
{
"definition": "ডকার কন্টেইনার stop করতে",
"code": "docker stop <container_id>"
},
{
"definition": "ডকার কন্টেইনার remove করতে",
"code": "docker rm <container_id>"
},
{
"definition": "ডকার কন্টেইনার focely remove করতে",
"code": "docker rm -f <container_id>"
}
]
},
{
"title": "ডকার ইমেজ কমান্ডসমূহ",
"items": [
{
"definition": "List of all ডকার ইমেজ",
"code": "docker images"
},
{
"definition": "ডকার ইমেজ remove করতে",
"code": "docker rmi <image_id>"
}
]
},
{
"title": "ডকার ইমেজ and কন্টেইনার run কমান্ডসমূহ",
"items": [
{
"definition": "ডকারফাইল run",
"code": "docker run -p 3000:3000 image"
},
{
"definition": "ডকার ইমেজ build করতে",
"code": "docker build -t <imagename> ."
}
]
},
{
"title": "ডকার credentials কমান্ডসমূহ",
"items": [
{
"definition": "ডকার login",
"code": "docker login"
}
]
}
]
}