docker部署web应用

一、安装docker

系统要求

Docker CE 支持以下版本的 Ubuntu 操作系统:

  • Bionic 18.04 (LTS)

  • Xenial 16.04 (LTS)

    注:win下子系统shell不支持,启动docker会找不到bus.

ubuntu 安装参考如下链接:

1.1 卸载旧版本

旧版本的 Docker 称为 docker 或者 docker-engine,使用以下命令卸载旧版本:

1
$ sudo apt-get remove docker docker-engine docker.io containerd runc

1.2 添加使用 HTTPS 传输的软件包以及 CA 证书
1
2
3
4
5
6
7
$ sudo apt-get update

$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common

添加软件源的 GPG 密钥(官方源比较慢在注释中)

1
2
3
4
5
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -


# 官方源
# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

source.list 中添加 Docker 软件源

1
2
3
4
5
6
7
8
9
10
11
$ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"


# 官方源
# $ sudo add-apt-repository \
# "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
# $(lsb_release -cs) \
# stable"
1.3 安装 Docker CE
1
2
3
$ sudo apt-get update

$ sudo apt-get install docker-ce
1.4 使用脚本自动安装
1
2
$ curl -fsSL get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh --mirror Aliyun
1.5 启动 Docker CE
1
2
$ sudo systemctl enable docker
$ sudo systemctl start docker
1.6 建立 docker 用户组

默认情况下,docker 命令会使用 Unix socket 与 Docker 引擎通讯。而只有 root 用户和 docker 组的用户才可以访问 Docker 引擎的 Unix socket。出于安全考虑,一般 Linux 系统上不会直接使用 root 用户。因此,更好地做法是将需要使用 docker 的用户加入 docker 用户组。

建立 docker 组:

1
$ sudo groupadd docker

将当前用户加入 docker 组:

1
$ sudo usermod -aG docker $USER

退出当前终端并重新登录,进行如下测试。

1.7 测试 Docker 是否安装正确
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$ sudo docker run hello-world

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
d1725b59e92d: Pull complete
Digest: sha256:0add3ace90ecb4adbf7777e9aacf18357296e799f81cabc9fde470971e499788
Status: Downloaded newer image for hello-world:latest

Hello 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/

若能正常输出以上信息,则说明安装成功。

二、Docker-Compose 安装

  • 官方参考链接

    1. Run this command to download the current stable release of Docker Compose:
    1
    sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
    1. apply executable permissions to the binary:
    1
    sudo chmod +x /usr/local/bin/docker-compose
    1. Test the installation.
    1
    2
    $ docker-compose --version
    docker-compose version 1.24.0, build 1110ad01

三、Mysql-Client 安装(验证测试用)

1
sudo apt install mysql-client

四、服务器程序配置运行

1. 拉取后台源代码
1
git clone https://github.com/sysu-change/backend.git
2. Docker-compose 一键部署
1
2
cd backend
docker-compose up -d
3. 测试服务器运行状况
1
curl localhost:8080

有获得响应则说明 api 转发部署成功。

1
curl localhost:8080

若成功 get 到页面文件,则说明使用 vue 写的 web 前端页面转发部署成功。