Skip to content

Commit 7a46403

Browse files
committed
elk: improve deployment
1 parent 0160b20 commit 7a46403

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
nohup.out
2+
workspace

topics/elk/helloworld/installation/docker-compose/install.sh

+16-11
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
1+
#!/bin/bash
12

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
29

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
713

8-
# Uninstall
9-
./uninstall.sh
14+
cd $WS_ABS_PATH
1015

1116
# Clone src code
12-
echo "Checkout code"
13-
cd /tmp/workspace-elk
14-
1517
if [ ! -d "docker-elk" ]; then
1618
git clone [email protected]:deviantony/docker-elk.git
1719
fi
1820

1921
cd docker-elk
2022
ls -la
2123

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
2429

2530
# Deploy
2631
echo "Deploying..."
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11

2-
cd /tmp/workspace-elk/docker-elk
3-
ls -la
4-
52
# Deploy
63
echo "Deploying..."
74
docker-compose down -v

0 commit comments

Comments
 (0)