Favicon of Ghost

Ghost

Create a custom website, publish rich media content, send email newsletters, and manage paid subscriptions with zero transaction fees to grow your business.

Launch a professional publishing business with a platform designed for creators, publishers, and businesses. You get complete control over your branding with customizable themes and a distraction-free editor built for modern storytelling. Expand your articles using dynamic cards for image galleries, videos, audio, and downloadable files.

Grow your audience and generate revenue using built-in membership tools. You can easily convert anonymous visitors into logged-in members and offer premium content through monthly or yearly paid subscriptions.

Key benefits include:

  • Zero payment fees on your subscription revenue.
  • Native email newsletters to deliver posts directly to your audience's inbox.
  • Detailed engagement analytics to understand what content performs best.
  • Custom offers and promotions to attract new subscribers.
  • Extensive integrations with hundreds of tools like Stripe, Zapier, and Google Analytics.

Directory Structure

ghost
content
mysql-data
.env
docker-compose.yml

docker-compose.yml

services:
  ghost:
    image: ghost:5
    restart: always
    ports:
      - "2368:2368"
    environment:
      url: http://localhost:2368
      database__client: mysql
      database__connection__host: db
      database__connection__user: ghost
      database__connection__password: ${GHOST_DB_PASSWORD}
      database__connection__database: ghost
    volumes:
      - ./content:/var/lib/ghost/content
    depends_on:
      - db

  db:
    image: mysql:8.0
    restart: always
    environment:
      MYSQL_DATABASE: ghost
      MYSQL_USER: ghost
      MYSQL_PASSWORD: ${GHOST_DB_PASSWORD}
      MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
    volumes:
      - ./mysql-data:/var/lib/mysql

.env

GHOST_DB_PASSWORD=your_secure_db_password
MYSQL_ROOT_PASSWORD=your_secure_root_password

Share:

Ad
Favicon

 

  
 

Similar to Ghost

Favicon

 

  
  
Favicon

 

  
  
Favicon