Compare commits

...

2 Commits

Author SHA1 Message Date
Starbeamrainbowlabs 66b214b17e
minetest-mapserver: add comment
sighs
2022-11-07 01:12:10 +00:00
Starbeamrainbowlabs 88aea0d1d6
kiwix: monitor library & reload automagically 2022-11-07 01:11:52 +00:00
2 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,7 @@ echo ">>> Starting kiwix";
case "${mode}" in
serve )
echo ">>> kiwix-serve --library --port ${NOMAD_PORT_kiwix} /srv/data";
/app/kiwix-serve --library --port "${NOMAD_PORT_kiwix}" /srv/data;
/app/kiwix-serve --library --monitorLibrary --port "${NOMAD_PORT_kiwix}" /srv/data;
;;
* )
echo ">>> kiwix-serve $*";

View File

@ -1,5 +1,8 @@
#!/usr/bin/env bash
# NOTE: mapserver doesn't support the leveldb backend - only sqlite3 or postgresql :-(
# ....so we'll need to switch to PostgreSQL, but that adds additional complexity..... oh boy
# The architecture - possible values: arm (default), x86, x86_64
arch="${arch:-arm}";