Docker命令摘要
Docker命令汇总
执行”docker run”命令
# Dockerイメージを指定して、名前を定義して実行する(Pythonを実行してすぐに終了する)
docker run --name test4 python:1.1
hello world!
执行结果
删除Docker容器
# Dockerを実行(イメージからコンテナを作成して実行する)
docker run --name test4 python:1.1
# コンテナを削除する
docker rm test4
启动交互式容器,当处理完成后关闭容器。
$ docker run --rm -it python:1.1
hello world!
[-i]选项:交互式(対話型)
[-t]选项:tty(终端设备)
创建并启动Ubuntu容器
$ docker run -it ubuntu
Unable to find image 'ubuntu:latest' locally
latest: Pulling from library/ubuntu
3153aa388d02: Already exists
Digest: sha256:0bced47fffa3361afa981854fcabcd4577cd43cebbb808cea2b1f33a3dd7f508
Status: Downloaded newer image for ubuntu:latest
root@e9c178678abb:/# ls
bin boot dev etc home lib lib32 lib64 libx32 media mnt opt proc root run sbin srv sys tmp usr var
root@e9c178678abb:/#