mirror of
https://github.com/friendica/docker
synced 2026-01-06 04:07:56 +01:00
8 lines
206 B
Bash
8 lines
206 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
envsubst < /etc/nginx/conf.d/templates/server_name.template > /etc/nginx/conf.d/server_name.active
|
|
nginx -qt
|
|
until ping app -c1 > /dev/null; do sleep 1; done
|
|
|
|
exec nginx -g 'daemon off;'
|