From c8a7ed09dd59d257d321d4bf7bf5d3e7625f9bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=BA=E5=99=A8=E4=BA=BA=E6=80=BB=E5=8A=A8=E5=91=98?= <73592731+devourbots@users.noreply.github.com> Date: Wed, 5 May 2021 17:29:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BD=BF=E7=94=A8=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb060db..c764d8b 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,33 @@ -### 使用方法 +## 使用方法 + +### 使用 Docker 安装 +官方安装地址:[点击访问](https://docs.docker.com/engine/install/) ```angular2html cd /root +# 拉取Redis镜像 docker pull redis - +# 创建 entrypoint.sh 入口文件 echo '#! /bin/sh \ cd /root/word_cloud_bot && python3 main.py >> output 2>&1 & tail -f /dev/null' > /root/entrypoint.sh +# 创建 Dockerfile wget -O /root/Dockerfile https://github.com/devourbots/word_cloud_bot/raw/master/Dockerfile +# 修改机器人TOKEN vi /root/Dockerfile 在第六行修改你的机器人TOKEN +# 根据 Dockerfile 创建镜像 docker build . -t world_cloud_bot:latest +# 运行 Redis 镜像,此步在前 docker run -d -p 6379:6379 redis:latest +# 运行 机器人,此步在后 docker run -d --net=host world_cloud_bot:latest ``` \ No newline at end of file