1
0
Fork 0
mirror of synced 2024-05-27 12:31:14 -04:00

all export

This commit is contained in:
Farid Musa 2024-01-01 21:52:35 +04:00
parent ed11ade127
commit 811a7c1b46
3 changed files with 6 additions and 1 deletions

View file

@ -5,7 +5,8 @@ if [ ! -f .env ]; then
exit 1 exit 1
fi fi
set -a
source .env source .env
set +a
envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf

View file

@ -5,7 +5,9 @@ if [ ! -f .env ]; then
exit 1 exit 1
fi fi
set -a
source .env source .env
set +a
for script_file in ./start.d/*.sh for script_file in ./start.d/*.sh
do do

View file

@ -5,7 +5,9 @@ if [ ! -f .env ]; then
exit 1 exit 1
fi fi
set -a
source .env source .env
set +a
docker compose -p "$OVPN_COMPOSE_NAME" down "$@" docker compose -p "$OVPN_COMPOSE_NAME" down "$@"