mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
8 lines
230 B
Bash
8 lines
230 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
unset $(grep -v '^#' ./setup.env | sed -E 's/(.*)=.*/\1/' | xargs)
|
||
|
export $(grep -v '^#' ./setup.env | xargs)
|
||
|
|
||
|
envsubst < docker-compose.yml.tmpl > docker-compose.yml
|
||
|
envsubst < management.json.tmpl > management.json
|