forked from open-falcon/falcon-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_test.sh
executable file
·45 lines (37 loc) · 1.22 KB
/
docker_test.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
#!/bin/bash
export DB_USER=root
export DB_PASSWORD=test123456
export DB_HOST=127.0.0.1
export DB_PORT=13306
export REDIS_HOST=127.0.0.1
export REDIS_PORT=16379
export API_PORT=18080
export API_HOST=127.0.0.1
docker rm -f falcon-mysql falcon-redis falcon-plus &> /dev/null
docker run --name falcon-mysql -e MYSQL_ROOT_PASSWORD=$DB_PASSWORD -p $DB_PORT:3306 -d mysql:5.7
docker run --name falcon-redis -p $REDIS_PORT:6379 -d redis:4-alpine3.8
echo "waiting mysql start..."
sleep 10
for x in `ls ./scripts/mysql/db_schema/*.sql`; do
echo "- - -" $x ...
mysql -h $DB_HOST -P$DB_PORT -u$DB_USER -p$DB_PASSWORD < $x
done
commit_id=`git rev-parse --short HEAD`
image_tag="falcon-plus:$commit_id"
#build docker image from source code
docker build -t $image_tag .
## run falcon-plus container
docker run -itd --name falcon-plus \
--link=falcon-mysql:db.falcon \
--link=falcon-redis:redis.falcon \
-p 18433:8433 \
-p 18080:8080 \
-e MYSQL_PORT=$DB_USER:$DB_PASSWORD@tcp\(db.falcon:3306\) \
-e REDIS_PORT=redis.falcon:6379 \
$image_tag
## start falcon backend modules, such as graph,api,etc.
sleep 5
docker exec falcon-plus sh ctrl.sh start \
graph hbs judge transfer nodata aggregator agent gateway api alarm
sleep 5
make test