Sign inSign up

archef2000/wikmd

By archef2000

Updated about 3 years ago

Image
0

2.9K

archef2000/wikmd repository overview

WIKMD docker container

Multiarch wikmd docker container from Linbreux.

Docker Compose

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

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

Variables,

Environment Variables

VariableRequiredFunctionExample
PUIDyesfor UserIDPUID=1000
PGIDyesfor GroupIDPGID=1000
TZyesSpecify a timezone to use EG Europe/ParisTZ=Europe/Paris
HOMEPAGEnoSpecify the file to use as a homepageHOMEPAGE=homepage.md
HOMEPAGE_TITLEnoSpecify the homepage's titleHOMEPAGE_TITLE=title
WIKMD_LOGGINGnoEnable/disable file loggingWIKMD_LOGGING=1

Volumes

VolumeRequiredFunctionExample
/wikiYesMarkdown files/path/to/wiki:/wiki

Ports

PortProtoRequiredFunctionExample
5000TCPYeswikmd server TCP listening port5000:5000/tcp

Tag summary

Content type

Image

Digest

sha256:47ba37f75

Size

175.3 MB

Last updated

about 3 years ago

docker pull archef2000/wikmd