File tree 3 files changed +17
-14
lines changed
topics/elk/helloworld/installation/docker-compose
3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1
1
nohup.out
2
+ workspace
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
3
+ CUR_DIR=$( pwd)
4
+ ls -la $CUR_DIR
5
+ if [[ $0 != " ./install.sh" ]]; then
6
+ echo " Not at the script path, exiting..."
7
+ exit 1
8
+ fi
2
9
3
- # Init
4
- echo " Init workspace"
5
- rm -rf workspace123
6
- mkdir /tmp/workspace-elk
10
+ WS_NAME=" workspace/ws_elk"
11
+ WS_ABS_PATH=" $CUR_DIR /$WS_NAME "
12
+ mkdir -p $WS_ABS_PATH
7
13
8
- # Uninstall
9
- ./uninstall.sh
14
+ cd $WS_ABS_PATH
10
15
11
16
# Clone src code
12
- echo " Checkout code"
13
- cd /tmp/workspace-elk
14
-
15
17
if [ ! -d " docker-elk" ]; then
16
18
git clone
[email protected] :deviantony/docker-elk.git
17
19
fi
18
20
19
21
cd docker-elk
20
22
ls -la
21
23
22
- # echo "Overwride local config env"
23
- # cp ../../.custom-env .env
24
+ # Uninstall
25
+ $CUR_DIR /uninstall.sh
26
+
27
+ echo " Overwride local config env"
28
+ cp " $CUR_DIR /.custom-env" .env
24
29
25
30
# Deploy
26
31
echo " Deploying..."
Original file line number Diff line number Diff line change 1
1
2
- cd /tmp/workspace-elk/docker-elk
3
- ls -la
4
-
5
2
# Deploy
6
3
echo " Deploying..."
7
4
docker-compose down -v
You can’t perform that action at this time.
0 commit comments