本文介绍常用的docker命令。
镜像相关
查看本地具有的镜像
1
|
|
登录远程镜像仓库
1
|
|
例如:
docker login test.lionheart.com
命名镜像
1
|
|
命名镜像后可推送镜像到远端仓库:
1
|
|
例如:
docker tag 12ab34cd56ef test.lionheart.com/wangyiguang/dockertest:1.0
docker push test.lionheart.com/wangyiguang/dockertest:1.0
容器相关
启动container:
1
|
|
示例:
sudo docker run -tid –name lionhearttest –net=host \
-l “GpuCount=1” -l “PerGpuCache=100000” 12ab34cd56ef /bin/bash
查看所有container:
1
|
|
1
|
|
以当前容器创建镜像:
1
|
|