7 lines
126 B
Bash
Executable file
7 lines
126 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sed \
|
|
-e "s/__PORT__/${PORT:-5000}/g" \
|
|
-e "s/__HOSTNAME__/$HOSTNAME/g" \
|
|
relay_template.yaml > relay.yaml
|