10 lines
200 B
Bash
10 lines
200 B
Bash
#!/bin/sh
|
|
|
|
PEER_0_NAME=${PEER_0_NAME:-peer-0}
|
|
PEER_1_NAME=${PEER_1_NAME:-peer-1}
|
|
PEER_2_NAME=${PEER_2_NAME:-peer-2}
|
|
|
|
envsubst < /etc/haproxy/haproxy.template.cfg > /etc/haproxy/haproxy.cfg
|
|
|
|
exec "$@"
|