diff --git a/README.md b/README.md index 78ea85b..ae66572 100644 --- a/README.md +++ b/README.md @@ -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/) 🔗 diff --git a/apps/cms/ghost.md b/apps/cms/ghost.md new file mode 100644 index 0000000..e7b7cd8 --- /dev/null +++ b/apps/cms/ghost.md @@ -0,0 +1,28 @@ +# Ghost +Flat file cms/blogging platform. + +
+ +- [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://:2368 + volumes: + - ./data:/var/lib/ghost/content +``` + +After the startup, open `http://:2368/ghost` to finish setup.