Skip to content

Commit de1df88

Browse files
committed
Add Kiwix
1 parent 1632b82 commit de1df88

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

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)