Update domain, add kiwix and ollama

This commit is contained in:
chris
2025-09-02 20:40:57 +02:00
parent e6ce62ae09
commit 2862618816
4 changed files with 51 additions and 5 deletions

View File

@@ -0,0 +1,23 @@
services:
kiwix:
extends:
file: ${TEMPLATES_PATH}
service: default
image: ghcr.io/kiwix/kiwix-serve
container_name: kiwix
ports:
- 2009:8080
networks:
- ip4net
volumes:
- ${EXTERNAL_STORAGE}/kiwix/:/data
command:
- '*.zim'
labels:
# Watchtower
- "com.centurylinklabs.watchtower.enable=true"
# Traefik
- "traefik.enable=true"
- "traefik.http.routers.kiwix.rule=Host(`kiwix.${LOCAL_DOMAIN}`)"
- "traefik.http.routers.kiwix.entrypoints=https"
- 'traefik.http.routers.kiwix.tls=true'