mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-13 19:00:22 +00:00
ghost
This commit is contained in:
parent
a2a435534f
commit
be474d75c1
@ -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
28
apps/cms/ghost.md
Normal 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.
|
Loading…
Reference in New Issue
Block a user