1
0
Fork 0
mirror of synced 2024-06-17 14:51:09 -04:00
ovpn-admin/start.sh

17 lines
303 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2024-01-01 12:14:00 -05:00
if [ ! -f .env ]; then
echo "Please create a .env file"
exit 1
fi
source .env
for script_file in ./start.d/*.sh
do
echo "Sourcing ${script_file}"
source "${script_file}"
done
docker compose -p "$OVPN_COMPOSE_NAME" up -d --force-recreate --always-recreate-deps "$@"