An open API service indexing awesome lists of open source software.

https://github.com/wonderfall/docker-ghost

Dockerfile for Ghost CMS.
https://github.com/wonderfall/docker-ghost

Last synced: over 1 year ago
JSON representation

Dockerfile for Ghost CMS.

Awesome Lists containing this project

README

          

## wonderfall/ghost

![](https://i.goopics.net/lt.png)

#### 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).

#### 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)*

#### Volumes
- **/ghost/content** : contents of your blog

### Ports
- **2368** [(reverse proxy!)](https://github.com/hardware/mailserver/wiki/Reverse-proxy-configuration)

### How to configure?
Everything you need is in `/ghost/content/ghost.conf` (also mounted on your host...).

### docker-compose.yml sample

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