什么是Docker
首先我们了解什么是Docker
Docker 准备工作
- 目前使用服务器为CentOS 7.6
- 使用Docker构建微服务首先我们需要Java环境(JDK),Maven和Git
安装JDK
- 到Oracle官网下载好 jdk-8u211-linux-x64.rpm 备用
首先查看系统自带java,并卸载
1
2
3
4
5
6# 如果有结果出来,则说明自带了java
java -version
# 查询出已经安装的java
rpm -qa|grep java
yum -y remove [删除上面查出来的东西,多个用空格分隔]安装JDK
1 | cd /usr |
- 配置环境变量,编辑/etc/profile文件找到: export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL 这一行,并在其下面一行添加如下内容,最后使profile文件环境变量生效
1 | #编辑/etc/profile文件 |
- 最后可以使用如下命令查看Java 版本
1
java -version
Maven的安装
下载 maven 3.6.1
1
2
3
4
5
6
7
8
9
10# 执行以下命令
tar -zxvf apache-maven-3.6.1-bin.tar.gz -C /data/opt
# 在/etc/profile文件末尾增加以下配置
# 设置Maven环境变量
export MAVEN_HOME=/data/opt/apache-maven-3.6.1/
export PATH=$MAVEN_HOME/bin:$PATH
# 重载/etc/profile这个文件
source /etc/profile测试
1 | mvn -v |
- Maven本地仓库配置(/data/opt/apache-maven-3.6.1/conf/settings.xml)
1 | <localRepository> maven/repo</localRepository> |
- 配置maven私服地址 和 登录私服账号密码
1 | <!--私服账号配置--> |
安装Git
1 | 安装依赖 |
Docker 安装
- Docker 官方安装文档
准备工作
- 卸载老版本的Docker
1 | yum remove docker \ |
- 在新的一台机器上安装Docker,首先我们需要设置Docker的存储仓库,然后我们就可以从存储仓库中安装和更新Docker
1 | # 安裝所需的包。 yum-utils提供yum-config-manager實用程序,devicemapper存儲驅動程序需要device-mapper-persistent-data和lvm2。 |
- 需要安装epel源 才能yum安装container-selinux
1 | # 安装wget 网络工具 |
开始安装
- 直接安装最新版本
1 | yum install docker-ce docker-ce-cli containerd.io |
- 查看可以安装版本
1 | yum list docker-ce --showduplicates | sort -r |
- 指定安装的版本
1 | # 官方方法 |
1 | # 直接安装 |
Docker 启动
1 | systemctl start docker |
- 放入测试镜像
1 | docker pull library/hello-world |
- 启动测试镜像
1 | docker run hello-world |
- 出现如下输出说明安装成功
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/