17 lines
302 B
YAML
17 lines
302 B
YAML
services:
|
|
kiwix:
|
|
image: ghcr.io/kiwix/kiwix-serve:latest
|
|
container_name: kiwix
|
|
restart: unless-stopped
|
|
command: '*.zim'
|
|
ports:
|
|
- "8085:8080"
|
|
volumes:
|
|
- /mnt/nas_library/kiwix/zim:/data
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|