bridgehead/ccp/exliquid-setup.sh

22 lines
436 B
Bash
Raw Normal View History

2022-10-31 08:26:25 +01:00
#!/bin/bash
function exliquidSetup() {
case ${SITE_ID} in
berlin|dresden|essen|frankfurt|freiburg|luebeck|mainz|muenchen-lmu|muenchen-tu|mannheim|tuebingen)
EXLIQUID=1
;;
dktk-test)
EXLIQUID=1
;;
*)
EXLIQUID=0
;;
esac
if [[ $EXLIQUID -eq 1 ]]; then
2022-12-05 13:18:14 +01:00
log INFO "EXLIQUID setup detected -- will start Report-Hub."
docker pull samply/report-hub:latest
2022-12-12 09:22:20 +01:00
OVERRIDE+=" -f ./$PROJECT/exliquid-compose.yml"
2022-10-31 08:26:25 +01:00
fi
}