docker指令
Posted Spring shine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker指令相关的知识,希望对你有一定的参考价值。
运行容器
docker run -i -t ubuntu /bin/bash
docker run --name mycontainer_-.0A -i -t ubuntu /bin/bash
docker ps -a
docker ps -l
ip a
docker help run
启动一个已经停止的容器:
docker start mycontainer_-.0A
docker attach mycontainer_-.0A
创建守护式容器
docker run --name daemon_dave -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done"
docker logs --tail 10 -ft daemon_dave
以上是关于docker指令的主要内容,如果未能解决你的问题,请参考以下文章