docker的安装及入门指令

目录

一、将docker安装到云服务器步骤

1.更新系统yum版本

2.安装所需依赖

3.添加docker仓库设置(使用的是阿里云)

4.安装docker引擎

5.启动docker并开启自动启动

[6. 检查是否安装成功,成功会显示相应版本,否则安装失败](#6. 检查是否安装成功,成功会显示相应版本,否则安装失败)

二、docker常用命令

1.从docker镜像仓库搜索所有与mysql相关的镜像

2.从docker仓库拉取镜像

3.启动镜像

4.查看所有正在运行的docker容器

5.查看所有的容器

6.停止某个容器

7.删除容器(先将运行的容器停止、再删除)

8.查看容器的日志

9.查看所有镜像

10.删除镜像


一、将docker安装到云服务器步骤

1.更新系统yum版本
bash 复制代码
yum update
2.安装所需依赖
bash 复制代码
yum install -y yum-utils device-mapper-persistent-data lvm2
3.添加docker仓库设置(使用的是阿里云)
bash 复制代码
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
4.安装docker引擎
bash 复制代码
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5.启动docker并开启自动启动
html 复制代码
systemctl enable docker

(设置docker开机自动启动)
systemctl enable docker
6. 检查是否安装成功,成功会显示相应版本,否则安装失败
bash 复制代码
docker --version

二、docker常用命令

1.从docker镜像仓库搜索所有与mysql相关的镜像
bash 复制代码
docker search mysql
2.从docker仓库拉取镜像

拉取mysql

html 复制代码
docker search mysql

拉取nacos

html 复制代码
docker pull nacos/nacos-server
3.启动镜像
html 复制代码
docker pull nacos/nacos-server
html 复制代码
docker run -d --name nacos -p 8848:8848  -p 9848:9848 -p 9849:9849 --privileged=true  -e MODE=standalone  --restart=always nacos/nacos-server
4.查看所有正在运行的docker容器
html 复制代码
docker ps
5.查看所有的容器
html 复制代码
docker ps -a
6.停止某个容器
html 复制代码
docker stop +容器id
7.删除容器(先将运行的容器停止、再删除)
html 复制代码
docker rm +容器id 
8.查看容器的日志
html 复制代码
docker logs -f 容器id

9.查看所有镜像
html 复制代码
 docker images
10.删除镜像
html 复制代码
docker rmi +镜像id

相关推荐
一个假的前端男几秒前
Windows Docker Desktop安装及使用 Docker 运行 MySQL
windows·docker·容器
ahuang12021 分钟前
在centos下使用containerd管理容器:5分钟从docker转型到containerd
linux·docker·centos
2401_8401922711 分钟前
OpenStack基础架构
运维·服务器·openstack
小马爱打代码16 分钟前
125个Docker的常用命令
运维·docker·容器
某风吾起18 分钟前
Linux 消息队列的使用方法
java·linux·运维
胡八一1 小时前
解决docker: ‘buildx‘ is not a docker command.
运维·docker·容器
石明亮(JT)1 小时前
docker部署jenkins
java·docker·jenkins
Мартин.2 小时前
[Meachines] [Easy] GoodGames SQLI+Flask SSTI+Docker逃逸权限提升
python·docker·flask
Rhys..2 小时前
Jenkins pipline怎么设置定时跑脚本
运维·前端·jenkins
老王聊主机2 小时前
2025年华为云一键快速部署幻兽帕鲁联机服务器教程
运维·服务器·华为云