This commit is contained in:
Tomasz Borychowski 2022-05-11 23:35:39 +01:00
parent a2a435534f
commit be474d75c1
2 changed files with 31 additions and 1 deletions

View File

@ -52,9 +52,11 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Blogging & CMS
- [Ghost](apps/cms/ghost.md)
- [AnchorCMS](https://github.com/anchorcms/anchor-cms#installation) 🔗
- [Bludit](https://www.bludit.com) 🔗 - Simple, Fast, Secure, Flat-File CMS.
- [Ghost](https://ghost.org/docs/install/docker/) 🔗
- [Grav](https://getgrav.org) 🔗 - modern open source flat-file CMS.
- [Hugo](https://gohugo.io/) 🔗
- [Kirby](https://getkirby.com/) 🔗

28
apps/cms/ghost.md Normal file
View File

@ -0,0 +1,28 @@
# Ghost
Flat file cms/blogging platform.
<br>
- [Github repo](https://github.com/TryGhost/Ghost)
- [Docs](https://ghost.org/docs/install/docker/)
## docker-compose.yml
```yml
---
version: '3.1'
services:
ghost:
image: ghost:4-alpine
container_name: ghost
restart: unless-stopped
ports:
- 2368:2368
environment:
# https://ghost.org/docs/config/#configuration-options
url: http://<serverIP>:2368
volumes:
- ./data:/var/lib/ghost/content
```
After the startup, open `http://<serverIP>:2368/ghost` to finish setup.