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.
- Host: GitHub
- URL: https://github.com/wonderfall/docker-ghost
- Owner: Wonderfall
- Created: 2018-01-17T17:21:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-15T17:13:34.000Z (about 7 years ago)
- Last Synced: 2025-03-24T09:40:25.490Z (over 1 year ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## wonderfall/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).
#### 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
```