This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Dryusdan 6a217a89cf autoupdate 2017-12-20 23:05:08 +01:00
rootfs first commit 2017-11-03 19:33:40 +00:00
.drone.yml config drone 2017-11-13 23:30:02 +00:00
Dockerfile Mettre à jour 'Dockerfile' 2017-12-14 12:12:39 +01:00
README.md Mettre à jour 'README.md' 2017-11-14 18:27:06 +00:00
lastAutoupdate autoupdate 2017-12-20 23:05:08 +01:00

README.md

Dryusdan/ghost

What is this? What features?

  • A simple Ghost CMS build made for production.
  • Based on Alpine Linux so it's lightweight!
  • Bundled with latest node.js available (version check is disabled).
  • Offers Isso integration.

Build-time variables

  • VERSION : version of Ghost.

Environment variables

  • GID : ghost user id (default : 991)
  • UID : ghost group id (default : 991)
  • ADDRESS : your domain (with http(s)://) (default : https://my-ghost-blog.com)
  • ENABLE_ISSO : enables Isso support if set to True (default : False)
  • ISSO_HOST, ISSO_AVATAR, ISSO_VOTE : Isso settings (True or False)

Volumes

  • /ghost/content : contents of your blog

Ports

How to configure?

Everything you need is in /ghost/content/ghost.conf (also mounted on your host...).

docker-compose.yml sample

ghost-myblog:
  image: dryusdan/ghost
  container_name: ghost-myblog
  environment:
    - UID=8100
    - GID=8100
    - ADDRESS=https://myblog.com
  volumes:
    - /mnt/docker/myblog:/ghost/content