feat: æ 添加dokuwiki,ghost和radicale服务器资料

This commit is contained in:
2018-01-01 23:56:55 +08:00
parent ffe186cba3
commit d8f743a6ff
11 changed files with 139 additions and 4 deletions

19
ghost/ghost.yaml Normal file
View File

@@ -0,0 +1,19 @@
version: '3'
services:
blog:
image: ghost
ports:
- "8002:2368"
deploy:
placement:
constraints: [node.role == manager]
volumes:
- data:/var/lib/ghost/content
environment:
mail_transport: SMTP
mail_options_service: smtp.139.com
mail_options_auth_user: shaojj
mail_options_auth_pass: imwolf
volumes:
data:

14
ghost/readme.md Normal file
View File

@@ -0,0 +1,14 @@
# ghost 博客系统
## 说明
基于node.js的轻量级博客系统速度快功能只能够个人使用可快速搭建
## 部署
```
$ sudo docker stack deploy -c ghost.yaml ghost
```
## 使用
访问
```
http://xxx.xxx.xxx:8002
```
**需要根据具体服务器部署情况进行修改**