You're reading this on Ghost

You're reading this on Ghost
Ghost screenshot

This website was put together with Ghost, a publishing and membership platform you should try if you're a content creator.

Ghost is a powerful app for new-media creators to publish, share, and grow a business around their content. It comes with modern tools to build a website, publish content, send newsletters & offer paid subscriptions to members.

Ghost demo self-hosted by Formable

Formable's Ghost Portainer stack docker-compose.yml

version: '3.1'

services:
  ghost:
    image: ghost:4-alpine
    restart: always
    ports:
        - 10150:2368
    environment:
        # see https://ghost.org/docs/config/#configuration-options
        database__client: mysql
        database__connection__host: db
        database__connection__user: root
        database__connection__password: example
        database__connection__database: ghost
        url: https://ghost.formable.app
  db:
    image: mysql:8.0
    restart: always
    environment:
        MYSQL_ROOT_PASSWORD: example
    volumes:
        - db_data:/var/lib/mysql
            
volumes:
  db_data:
Mastodon