|
1 month ago | |
---|---|---|
rootfs | 1 year ago | |
.gitignore | 2 years ago | |
.travis.yml | 1 year ago | |
Dockerfile | 1 month ago | |
LICENSE | 1 year ago | |
README.md | 10 months ago | |
docker-compose.yml | 1 month ago | |
docker-entrypoint.sh | 1 year ago | |
generate-stackbrew-library.sh | 2 years ago | |
service.yml | 1 month ago | |
update.sh | 1 year ago |
Ghost is a free and open source blogging platform written in JavaScript.
Based on official alpine version of Dockerbuild. See Tags for the versions of Ghost available.
To run this image
docker run --name some-ghost -p 2368:2368 -d ghost
Or you can use a docker-compose:
version: '2'
services:
ghost:
image: gilir/rpi-ghost
container_name: ghost
ports:
- "2368:2368"
And run it with:
docker-compose up -d