Docker के साथ काम करने में images बनाने, containers को run और प्रबंधित करने, और निरीक्षण/debugging के लिए आवश्यक CLI commands का एक सेट शामिल है। इन्हें जानना मौलिक, रोज़मर्रा का व्यावहारिक ज्ञान है।
image commands
docker build -t myapp:1.0 . # build an image from a Dockerfile in the current dir
docker images # list local images
docker pull nginx:latest
docker push myapp:1.0
docker rmi myapp:1.0
docker tag myapp:1.0 myapp:latest
