Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 566 Bytes

ghost.md

File metadata and controls

28 lines (23 loc) · 566 Bytes

Ghost

Flat file cms/blogging platform.


docker-compose.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://<serverIP>:2368
    volumes:
      - ./data:/var/lib/ghost/content

After the startup, open http://<serverIP>:2368/ghost to finish setup.