Docker常用命令
作者:互联网
1、docker安装
参考路径:https://www.runoob.com/docker/macos-docker-install.html
2、docker阿里云加速器地址
https://cr.console.aliyun.com/cn-beijing/instances/mirrors
3、查看docker版本
docker --version
4、搜索镜像
docker search java
5、下载镜像
docker pull java:8
<style></style>docker pull nginx:1.14
6、列出已下载的镜像
docker images
6、删除镜像
docker rmi java:8
当删除异常时
执行docker rm containerId 删除容器
再执行docker rmi nginx:1.14
7、启动镜像
docker run -d -p 9100:80 nginx:1.14
8、查看启动容器
docker ps
docker ps -a
9、停止容器
docker stop containerId ##
docker kill containerId ##强制停止
10、启动已停止的容器
docker start containerId
11、查看容器的所有信息
docker inspect containerId
12、查看容器日志
docker container logs 98c4575fbaa5
13、查看容器里的进程
docker top containerId
14、进入容器
docker exec -it containerId /bin/bash
<style></style> <style></style> <style></style> <style></style>
标签:容器,1.14,containerId,查看,常用命令,镜像,Docker,docker 来源: https://www.cnblogs.com/monkeybrother/p/10911397.html