mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 06:48:04 +00:00
238d529eae
* move the env-config script to a sub folder * fix doc * fix ports and ref to the official image * add hardening to the docker-compose examples
16 lines
269 B
Bash
Executable File
16 lines
269 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
ENV_CONFIG=/app/tmp/env-config.js
|
|
|
|
if test -f $ENV_CONFIG; then
|
|
echo Config is locked
|
|
else
|
|
echo Generate env-config script...
|
|
/usr/local/bin/env.sh
|
|
echo done
|
|
chmod 444 $ENV_CONFIG
|
|
fi
|
|
|
|
echo Starting nginx...
|
|
nginx -g "daemon off;"
|