Transform your content into a sustainable business with a comprehensive publishing platform designed for professionals. This open-source solution provides everything needed to build a custom website, deliver email newsletters, and manage paid subscriptions from a single interface. You maintain complete control over your branding with customizable themes and a distraction-free editor that supports rich media and dynamic cards.
Take advantage of powerful growth tools to expand your reach and monetize your work:
Retain full ownership of your audience, brand, and revenue.
services:
ghost:
image: ghost:5-alpine
restart: always
ports:
- 2368:2368
environment:
url: ${GHOST_URL}
database__client: mysql
database__connection__host: db
database__connection__user: root
database__connection__password: ${MYSQL_ROOT_PASSWORD}
database__connection__database: ghost
volumes:
- ./content:/var/lib/ghost/content
depends_on:
- db
db:
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
volumes:
- ./mysql:/var/lib/mysqlGHOST_URL=http://localhost:2368
MYSQL_ROOT_PASSWORD=your_super_secret_passwordAuto-fetched about 22 hours ago