L-ħidma ma' Docker tinvolvi sett ta' CLI commands essenzjali għal bini ta' images, tħaddim u ġestjoni ta' containers, u inspezzjoni/debugging. Jikkunoskihom huwa għarfien fundamentali, pratiku ta' kuljum.
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
