云原生之使用Docker部署Ghost个人博客

举报
江湖有缘 发表于 2022/10/25 22:13:23 2022/10/25
【摘要】 云原生之使用Docker部署Ghost个人博客

一、检查本地系统版本

[root@docker ~]# cat /etc/os-release 
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

二、检查本地docker环境

1.检查docker版本

[root@docker ~]# docker -v
Docker version 20.10.18, build b40c2f6

2.检查docker状态

[root@docker ~]# systemctl status docker
● docker.service - Docker Application Container Engine
   Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2022-10-25 11:40:20 CST; 9h ago
     Docs: https://docs.docker.com
 Main PID: 9403 (dockerd)
    Tasks: 91
   Memory: 1.3G
   CGroup: /system.slice/docker.service

三、下载Ghost镜像

[root@docker ~]# docker pull    ghost
Using default tag: latest
latest: Pulling from library/ghost
72a69066d2fe: Already exists 
24892ef5fd86: Pull complete 
b352cb85f08b: Pull complete 
d184ccfb32cc: Pull complete 
a1aa0950435d: Pull complete 
6af76194e172: Pull complete 
6ecb9543cf3f: Pull complete 
f5dc5f4a448f: Pull complete 
c5c6987f6d28: Pull complete 
Digest: sha256:8123a7eabc533746cfa7302c71b780e763ee292f92c10f44e12d08baa0b489f9
Status: Downloaded newer image for ghost:latest
docker.io/library/ghost:latest

四、创建Ghost容器

1.创建数据目录

[root@docker ~]# mkdir -p /data/ghost
[root@docker ~]# cd /data/ghost/
[root@docker ghost]# 

2.目录授权

chmod -R 777 /data/ghost/

3.创建Ghost容器

docker run -d \
   --restart always \
   --name ghost \
   -p 2368:2368 \
   -v $(pwd)/data:/var/lib/ghost/content \
   -e NODE_ENV=development \
   -e url=http://192.168.3.232:2368 \
   ghost

4.检查Ghost容器状态

[root@docker ghost]# docker ps
CONTAINER ID   IMAGE                         COMMAND                  CREATED          STATUS                 PORTS                                                                              NAMES
66dd8a21b646   ghost                         "docker-entrypoint.s…"   28 seconds ago   Up 26 seconds          0.0.0.0:2368->2368/tcp, :::2368->2368/tcp                                          ghost

五、查看Ghost首页

image.png

六、注册Ghost账号

image.png

image.png

七、发布博文

image.png

八、查看Ghost前端首页

image.png

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。