1. 程式人生 > >docker學習總結四

docker學習總結四

1. 建立容器

$ docker create -it ubuntu:latest
2. 啟動容器
$ docker start 容器ID
3. 新建並啟動容器
$ docker run -it ubuntu:16.04 /bin/bash
4. 守護態執行
$ docker run -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done"
5.停止容器
$ docker stop 容器id
6. 進入容器
$ docker exec -it 容器id /bin/bash
7. 刪除容器
刪除已經終止的容器
$ docker rm 容器id

刪除正在執行的容器
$ docker run -d ubuntu:16.04 /bin/sh -c "while true; do echo hello world; sleep 1; done"
8. 匯出容器


不管執行與否都可匯出
$ docker export -o test_for_run.tar 容器id

$ docker export 容器id >test_for_stop.tar
9. 匯入容器
$ docker import test_for_run.tar - test/ubuntu:dao.1