forked from openmhealth/shimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-dockerized.sh
executable file
·78 lines (61 loc) · 1.85 KB
/
run-dockerized.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
BASEDIR=`pwd`
isNpmPackageInstalled() {
npm list --depth 1 -g $1 > /dev/null 2>&1
}
# check dependencies
if ! hash "npm" 2>/dev/null;
then
echo "npm can't be found"
exit 1
fi
if ! hash "docker-compose" 2>/dev/null;
then
echo "docker-compose can't be found"
exit 1
fi
# check for Docker Compose tooling and update configuration
. update-compose-files.sh
# remove the symlink which may have been created by running natively earlier
rm -f ${BASEDIR}/shim-server/src/main/resources/public #CMD
# build the console
echo -n "Do you want to rebuild the console (y/N)? "
read answer
if echo "$answer" | grep -iq "^y" ;then
cd ${BASEDIR}/shim-server-ui #CMD
if ! isNpmPackageInstalled grunt-cli
then
echo Installing Grunt. You may be asked for your password to run sudo...
sudo npm install -g grunt-cli #CMD
else
echo Grunt is already installed, skipping...
fi
if ! isNpmPackageInstalled bower
then
echo Installing Bower. You may be asked for your password to run sudo...
sudo npm install -g bower #CMD
else
echo Bower is already installed, skipping...
fi
echo Installing npm dependencies...
npm install #CMD
echo Installing Bower dependencies...
bower install #CMD
echo Building the console...
grunt build #CMD
fi
# build the backend
echo -n "Do you want to rebuild the resource server (y/N)? "
read answer
if echo "$answer" | grep -iq "^y" ;then
echo Building the resource server...
cd ${BASEDIR} #CMD
./gradlew build #CMD
fi
# run the containers
cd ${BASEDIR} #CMD
echo Building the containers...
docker-compose -f docker-compose-build.yml build #CMD
echo Starting the containers in the background...
docker-compose -f docker-compose-build.yml up -d #CMD
echo Done, containers are starting up and may take up to a minute to be ready.