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:

Managed Self Hosted Ghost

Formable sets up, monitors and updates your cloud applications.

💡
Formable installs Ghost at your own subdomain, for example: ghost.formable.app
🔒
Free Let's Encrypt certificate setup and renewal with certbot.
📡
We monitor your application subdomain with Formable's Uptime Kuma server.
⚙️
Formable updates your application and checks for any breaking changes.
💾
Formable configures Kopia to take incremental snapshots of your application data and files to AWS S3.
✉️
Formable starts you on our Mailgun SMTP server for email notification delivery. We can then get you setup with your own Mailgun account and subdomain, so you can track deliverability.
🚨
Formable resolves any application downtime issues and supports your team.
Mastodon