Skip to content

Commit 28196d8

Browse files
authored
Merge pull request #39 from coriumalpha/main
Add Kiwix
2 parents f6bac41 + db1e82c commit 28196d8

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ A [wiki](https://en.wikipedia.org/wiki/Wiki) is a publication collaboratively ed
397397
- [Docmost](examples/docmost) - Docmost is an open source collaborative documentation and wiki software. It is an open-source alternative to the likes of Confluence and Notion.
398398
- [Atlassian Confluence](examples/atlassian-jira-confluence) - Confluence is a wiki solution built for business teams.
399399
- [Siyuan](examples/siyuan) - A privacy-first, self-hosted, fully open source personal knowledge management software, written in typescript and golang.
400+
- [Kiwix Serve](examples/kiwix) - Offline reader for Wikipedia and other web content stored in ZIM files, served through a lightweight web interface.
400401

401402
### Money, Budgeting & Management
402403

examples/kiwix/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# References
2+
3+
- https://github.com/kiwix/kiwix-tools
4+
- https://github.com/kiwix/kiwix-tools/blob/main/docker/server/README.md
5+
- https://github.com/kiwix/kiwix-tools/blob/main/docker/server/docker-compose.yml.example

examples/kiwix/docker-compose.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
services:
2+
3+
kiwix-serve:
4+
image: ghcr.io/kiwix/kiwix-serve:latest
5+
container_name: kiwix
6+
restart: unless-stopped
7+
ports:
8+
- "8080:8080"
9+
expose:
10+
- 8080
11+
# uncomment next 4 lines to use it with local zim file in /tmp/zim
12+
# volumes:
13+
# - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kiwix/data:/data
14+
# command:
15+
# - '*.zim'
16+
# uncomment next 2 lines to use it with remote zim file
17+
# environment:
18+
# - DOWNLOAD=https://download.kiwix.org/zim/wikipedia_bm_all.zim

0 commit comments

Comments
 (0)