bridgehead/start-bridgehead.sh

30 lines
630 B
Bash
Raw Normal View History

2021-12-27 14:41:54 +01:00
#!/bin/bash
2022-05-09 12:57:24 +02:00
source lib/functions.sh
2021-12-27 14:41:54 +01:00
2022-04-11 15:28:11 +02:00
if [ $# -eq 0 ]; then
2022-05-09 12:57:24 +02:00
log "Please provide a Project as argument"
2022-04-11 15:28:11 +02:00
exit 1
fi
2022-05-03 09:16:19 +02:00
if [ $1 != "ccp" ] && [ $1 != "nngm" ] && [ $1 != "gbn" ]; then
2022-05-09 12:57:24 +02:00
log "Please provide a supported project like ccp, gbn or nngm"
2022-05-03 09:16:19 +02:00
exit 1
fi
export project=$1
if ! lib/prerequisites.sh; then
2022-05-03 09:16:19 +02:00
log "Validating Prerequisites failed, please fix the occurring error"
exit 1
fi
2021-12-27 14:41:54 +01:00
source /etc/bridgehead/site.conf
2022-05-09 12:57:24 +02:00
####./lib/generate.sh
2022-01-10 16:31:48 +01:00
log "Starting bridgehead"
2021-12-27 14:41:54 +01:00
2022-05-04 13:50:33 +02:00
docker-compose -f $1/docker-compose.yml --env-file /etc/bridgehead/$1.env up -d
2021-12-27 14:41:54 +01:00
2022-01-10 16:31:48 +01:00
log "The bridgehead should be in online in a few seconds"