-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_vm.sh
36 lines (29 loc) · 943 Bytes
/
test_vm.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
#!/bin/bash
# install docker
apt-get update
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common \
libssl-dev \
libz-dev \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
apt-key fingerprint 0EBFCD88
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io
# install docker compose
curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
# install luasocket
apt-get install -y luarocks
luarocks install luasocket
# install deathstarbench
git clone https://github.com/delimitrou/DeathStarBench.git
cd /root/DeathStarBench/mediaMicroservices
docker-compose up -d