mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-20 02:51:14 +00:00
ghost
This commit is contained in:
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.
|
||||
Reference in New Issue
Block a user