1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-07-27 11:25:41 +00:00
Files
boring-nginx
matomo
nextcloud
nginx-php
privatebin
searx
unmaintained
boinc
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lutim
lychee
mastodon
mediawiki
nginx
parsoid
rootfs
Dockerfile
README.md
pgbouncer
rainloop
reverse
rtorrent-flood
rutorrent
tor
LICENSE
README.md
dockerfiles/unmaintained/parsoid/README.md

29 lines
736 B
Markdown
Raw Normal View History

2017-12-04 14:54:24 +01:00
## wonderfall/parsoid
#### What is this? What features?
- A **simple** Parsoid image.
- 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 address *(default : http://localhost/w/)*
- **DOMAIN** : name of the container *(default : localhost)*
### docker-compose.yml sample
```
mywiki-parsoid:
image: wonderfall/parsoid
container_name: mywiki-parsoid
environment:
- UID=1669
- GID=1669
- ADDRESS=https://wiki.domain.com/
- DOMAIN=mywiki-parsoid
```