Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: docker-compose install method #245

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,54 @@ docker version
systemctl restart docker
```

##### 2.3 使用Docker-Compose创建并启动容器

安装docker-compose

Debian / Ubuntu

```shell
apt update && apt -y install python3 pip
pip3 install docker-compose
```

CentOS

```shell
yum update && yum -y install python3 pip
pip3 install docker-compose
```

新建文件夹并创建`docker-compose.yml`文件,内容如下:

```yaml
version: "3.3"
services:
freenom:
image: luolongfei/freenom
restart: always
container_name: freenom
volumes:
- ./conf:/conf
- ./logs:/app/logs
```

运行容器

```shell
docker-compose up -d
```

更新镜像

```shell
docker-compose pull
docker-compose stop
docker-compose up -d
```

其余配置同上

*有关容器部署的内容结束。*

***
Expand Down Expand Up @@ -566,4 +614,4 @@ PayPal: [https://www.paypal.me/mybsdc](https://www.paypal.me/mybsdc)

### 🥝 开源协议

[MIT](https://opensource.org/licenses/mit-license.php)
[MIT](https://opensource.org/licenses/mit-license.php)