Kiwix/ZIM - Offline Wikipedia
Kiwix/ZIM - Offline Wikipedia
An abstract
Kiwix is a very powerful and easy to use tool combined with ZIM files to access wikis offline and are self host-able.
ZIM Repos
Methods to run
Mobile/Desktop
Docker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Kiwix
services:
kiwix-tools:
ports:
- '8081:80' #I prefer to not use port 80 as it is usually used
volumes:
- type: bind
source: <your_ZIM_file_location>
target: /kiwix-data
stdin_open: true
tty: true
image: ghcr.io/kiwix/kiwix-tools
command: >
sh -c "for i in /kiwix-data/*
do
echo $i >&2
kiwix-manage /kiwix-data/library.xml add $i
done
kiwix-serve --library /kiwix-data/library.xml"
This post is licensed under CC BY 4.0 by the author.