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 # upload an image to a registry
docker rmi myapp:1.0
docker tag myapp:1.0 myapp:latest
