Wikitten is a small, fast, PHP wiki. Raspberry, arm and amd64
10K+
docker create --name=wikitten -v $HOME/Notas:/Notas -p 80:80 ugeek/wikitten:arm
Put your markdown notes in Notas volume
docker run -d --name=wikitten -v $HOME/docker/wikitten/:/var/www -p 9001:9000 ugeek/wikitten:amd64
git clone https://github.com/uGeek/docker-wikitten.git $HOME/docker/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 titledefine('DEFAULT_FILE', 'index.md'); - Choose the file that should be loaded as the homepage, must be located in library folderdefine('LIBRARY', '/path/to/wiki/library'); - Set a custom path to the librarydefine('ENABLE_EDITING', true); - Enable the in-page editing of any filesdefine('USE_PAGE_METADATA', true); - Enable the JSON Front Matter (meta data), see below for more detailsdefine('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 bottomport: 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
Content type
Image
Digest
Size
122.5 MB
Last updated
about 5 years ago
docker pull ugeek/wikitten:arm