diff --git a/kiwix/docker-compose.yaml b/kiwix/docker-compose.yaml new file mode 100644 index 0000000..7b4331c --- /dev/null +++ b/kiwix/docker-compose.yaml @@ -0,0 +1,16 @@ +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 diff --git a/pmtiles/docker-compose.yaml b/pmtiles/docker-compose.yaml new file mode 100644 index 0000000..a91b8f8 --- /dev/null +++ b/pmtiles/docker-compose.yaml @@ -0,0 +1,16 @@ +services: + pmtiles: + image: protomaps/go-pmtiles:latest + container_name: pmtiles + restart: unless-stopped + command: serve /data --port=8080 --cors=* --public-url=https://maps.kolpacksoftware.com/ + ports: + - "8086:8080" + volumes: + - /mnt/nas_library/pmtiles/data:/data + networks: + - npm-network + +networks: + npm-network: + external: true