mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-08-20 15:47:24 -04:00
10 lines
331 B
Bash
Executable File
10 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /srv/ledgersmb
|
|
|
|
# ':5762:' suppresses an uninitialized variable warning in starman
|
|
# the last colon means "don't connect using tls"; without it, there's a warning
|
|
exec starman --listen 0.0.0.0:5762 --workers ${LSMB_WORKERS:-5} \
|
|
-I lib -I old/lib \
|
|
--preload-app bin/ledgersmb-server.psgi
|