Sign inSign up

ugeek/wikitten

By ugeek

Updated about 5 years ago

Wikitten is a small, fast, PHP wiki. Raspberry, arm and amd64

Image
0

10K+

ugeek/wikitten repository overview

Raspberry, arm

docker create --name=wikitten -v $HOME/Notas:/Notas -p 80:80 ugeek/wikitten:arm

Put your markdown notes in Notas volume

amd64

docker run -d --name=wikitten -v $HOME/docker/wikitten/:/var/www -p 9001:9000 ugeek/wikitten:amd64

Clone root folder

git clone https://github.com/uGeek/docker-wikitten.git $HOME/docker/wikitten/


Configure Wikitten

You are able to configure Wikitten by using the config file. First, copy the config.php.example to config.php and you are ready to change the settings.
Some options are disabled with a comment but can be enabled by removing // from the option line.

  • define('APP_NAME', 'My Wiki'); - Set the Wiki title
  • define('DEFAULT_FILE', 'index.md'); - Choose the file that should be loaded as the homepage, must be located in library folder
  • define('LIBRARY', '/path/to/wiki/library'); - Set a custom path to the library
  • define('ENABLE_EDITING', true); - Enable the in-page editing of any files
  • define('USE_PAGE_METADATA', true); - Enable the JSON Front Matter (meta data), see below for more details
  • define('USE_DARK_THEME', true); - Enable the dark theme (see below for a screenshot)
  • define('USE_WIKITTEN_LOGO', false); - Disable the Wikitten logo on the left bottom

ugeek.github.io


  • port: 80

  • volume: /data

  • environment:

  • USER: admin(default)

  • PASSWD: 123456(default)

example:

docker run -d --name wikitten -p 8080:80 -v ~/wikitten:/data ugeek/wikitten:amd64-leonyff
docker run -d --name wikitten -p 8080:80 -v ~/wikitten:/data -e USER=admin -e PASSWD=123456 ugeek/wikitten:amd64-leonyff

Tag summary

Content type

Image

Digest

Size

122.5 MB

Last updated

about 5 years ago

docker pull ugeek/wikitten:arm