メモ > サーバ > 各論: Docker > コマンドの新旧
コマンドの新旧
Docker 1.13 からコマンドが「docker 何を どうするか」の形式に再編成されている
新旧のコマンドに互換性はあるが、できるだけ新体系のコマンドを使用しておくといい
旧コマンド 新コマンド
- - - - - - - - - - - - - - - - - - - -
docker build docker image build
docker images docker image ls
docker rmi docker image rm
docker tag docker image tag
docker push docker image push
docker pull docker image pull
docker run docker container run
docker logs docker container logs
docker exec docker container exec
docker stop docker container stop
Advertisement