Add kiwix and pmtiles services with NAS library share mounts
This commit is contained in:
@@ -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
|
||||||
@@ -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
|
||||||
Reference in New Issue
Block a user