mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-12-16 11:58:29 +01:00
Add Kiwix
This commit is contained in:
5
examples/kiwix/README.md
Normal file
5
examples/kiwix/README.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# References
|
||||
|
||||
- https://github.com/kiwix/kiwix-tools
|
||||
- https://github.com/kiwix/kiwix-tools/blob/main/docker/server/README.md
|
||||
- https://github.com/kiwix/kiwix-tools/blob/main/docker/server/docker-compose.yml.example
|
||||
18
examples/kiwix/docker-compose.yml
Normal file
18
examples/kiwix/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
|
||||
kiwix-serve:
|
||||
image: ghcr.io/kiwix/kiwix-serve:latest
|
||||
container_name: kiwix
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:8080"
|
||||
expose:
|
||||
- 8080
|
||||
# uncomment next 4 lines to use it with local zim file in /tmp/zim
|
||||
# volumes:
|
||||
# - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/kiwix/data:/data
|
||||
# command:
|
||||
# - '*.zim'
|
||||
# uncomment next 2 lines to use it with remote zim file
|
||||
# environment:
|
||||
# - DOWNLOAD=https://download.kiwix.org/zim/wikipedia_bm_all.zim
|
||||
Reference in New Issue
Block a user