Skip to content

gilir/rpi-ghost

Repository files navigation

Ghost - Docker ARM builds for Raspberry PI

Docker Stars Docker Pulls Docker Image Version

About Ghost

Ghost is a free and open source blogging platform written in JavaScript.

ARM build, for Raspberry PI

Based on official alpine version of Dockerbuild. See Tags for the versions of Ghost available.

Features

  • Alpine 3.7
  • NodeJS 6.9

How to use

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

Sources