يتضمن العمل مع Docker مجموعة من أوامر CLI الأساسية لبناء الصور وتشغيل وإدارة الحاويات والفحص/تصحيح الأخطاء. معرفتها بها معرفة عملية أساسية يومية.
أوامر الصور
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 # download an image from a registry
docker push myapp:1.0
docker rmi myapp:1.0
docker tag myapp:1.0 myapp:latest
