Ghost is a free and open source blogging platform written in JavaScript
340
This will start a Ghost instance listening on the default Ghost port of 2368.
$ docker run -d --name some-ghost wanlay/ghost
This Docker image for Ghost uses SQLite. There is nothing special to configure.
/ghost/content
default: ADDRESS=https://my-ghost-blog.com
example: -e ADDRESS=https://my-ghost-blog.com
default: ENABLE_ISSO=False
ISSO_HOST=isso.domain.tld
ISSO_AVATAR=false
ISSO_VOTE=false
default: ENABLE_DISQUS=False DISQUS_SHORTNAME=shortname
version: "2"
services:
blog:
image: wanlay/ghost:latest
restart: on-failure:10
ports:
- "2368:2368" #
volumes:
- ghost-volume:/ghost/content
environment:
- ADDRESS=http://10.0.0.0:2368 #this port is changed with ports
volumes:
ghost-volume:
Content type
Image
Digest
Size
73.4 MB
Last updated
almost 9 years ago
docker pull wanlay/ghost