Skip to content

Commit 537720c

Browse files
author
Sabbir Ahmed
authored
Merge pull request #799 from MoshiulRabbi/patch-2
added some Docker-hub commands
2 parents 10754b9 + f07d818 commit 537720c

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

data/docker.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,31 @@
164164
}
165165
]
166166
},
167+
{
168+
"title": "ডকার Hub এর কমান্ডসমূহ",
169+
"items": [
170+
{
171+
"definition": "ডকার CLI এ লগইন করতে",
172+
"code": "docker login"
173+
},
174+
{
175+
"definition": "ডকার Hub থেকে স্যাম্পল ইমেজ পুল করতে",
176+
"code": "docker pull hello-world"
177+
},
178+
{
179+
"definition": "ডকার ইমেজ build করুন ডকার Hub এ আপলোড এর জন্য",
180+
"code": "docker build -t <your_username>/my-private-repo"
181+
},
182+
{
183+
"definition": "ডকার ইমেজ locally রান করতে",
184+
"code": "docker run <your_username>/my-private-repo"
185+
},
186+
{
187+
"definition": "ডকার ইমেজটি ডকার Hub এ পুশ করতে",
188+
"code": "docker push <your_username>/my-private-repo"
189+
}
190+
]
191+
},
167192
{
168193
"title": "ডকার সিস্টেম কমান্ডসমূহ",
169194
"items": [{
@@ -208,4 +233,4 @@
208233
}]
209234
}
210235
]
211-
}
236+
}

0 commit comments

Comments
 (0)