Multiarch wikmd docker container from Linbreux.
version: "2.1"
services:
wikmd:
image: linbreux/wikmd:latest
container_name: wikmd
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
- HOMEPAGE=homepage.md #optional
- HOMEPAGE_TITLE=homepage.md #optional
- WIKMD_LOGGING=1 #optional
volumes:
- /path/to/wiki:/wiki
ports:
- 5000:5000
restart: unless-stopped
docker run -d \
--name wikmd \
-e TZ=Europe/Paris \
-e PUID=1000 \
-e PGID=1000 \
-e HOMEPAGE=homepage.md `#optional` \
-e HOMEPAGE_TITLE=homepage.md `#optional` \
-e WIKMD_LOGGING=1 `#optional` \
-p 5000:5000 \
-v /path/to/wiki:/wiki \
--restart unless-stopped \
linbreux/wikmd:latest
| Variable | Required | Function | Example |
|---|---|---|---|
PUID | yes | for UserID | PUID=1000 |
PGID | yes | for GroupID | PGID=1000 |
TZ | yes | Specify a timezone to use EG Europe/Paris | TZ=Europe/Paris |
HOMEPAGE | no | Specify the file to use as a homepage | HOMEPAGE=homepage.md |
HOMEPAGE_TITLE | no | Specify the homepage's title | HOMEPAGE_TITLE=title |
WIKMD_LOGGING | no | Enable/disable file logging | WIKMD_LOGGING=1 |
| Volume | Required | Function | Example |
|---|---|---|---|
/wiki | Yes | Markdown files | /path/to/wiki:/wiki |
| Port | Proto | Required | Function | Example |
|---|---|---|---|---|
5000 | TCP | Yes | wikmd server TCP listening port | 5000:5000/tcp |
Content type
Image
Digest
sha256:47ba37f75…
Size
175.3 MB
Last updated
about 3 years ago
docker pull archef2000/wikmd