Skip to content

Commit 8b4ce05

Browse files
author
Sabbir Ahmed
authored
Merge pull request #769 from hashemirafsan/develop
feat: add docker and docker-compose command
2 parents e2e0e77 + 9753c2a commit 8b4ce05

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

data/docker.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,16 @@
151151
"code": "docker-compose down"
152152
},
153153
{
154-
"definition": "নেটওয়ার্ক ভলিউম সহ সবকিছু remove করতে ",
154+
"definition": "নেটওয়ার্ক ভলিউম সহ সবকিছু remove করতে",
155155
"code": "docker-compose down --rmi all --volumes"
156+
},
157+
{
158+
"definition": "ডকার কম্পোজ বিল্ড করা যাতে কোন cache না থাকে",
159+
"code": "docker-compose build --no-cache"
160+
},
161+
{
162+
"definition": "ডকার কম্পোজ এর অরফান কন্টেইনার রিমুভ করা ",
163+
"code": "docker-compose up --remove-orphans"
156164
}
157165
]
158166
},
@@ -181,6 +189,14 @@
181189
{
182190
"definition": "অব্যবহৃত সকল ডকার ভলিউম রিমুভ করতে",
183191
"code": "docker system prune --volumes"
192+
},
193+
{
194+
"definition": "কন্টেইনার এর লগ দেখতে",
195+
"code": "docker logs <container_id>"
196+
},
197+
{
198+
"definition": "কন্টেইনার ইন্সপেক্ট করে দেখতে",
199+
"code": "docker inspect <container_id>"
184200
}
185201
]
186202
},

0 commit comments

Comments
 (0)