File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ No two codes have access to each other’s *Docker* or files.
49
49
- Ubuntu 12.04 LTS
50
50
- Ubuntu 13.10
51
51
- Ubuntu 14.04 LTS
52
+ - Ubuntu 16.04 LTS
52
53
- Linux Mint 15
53
54
- CentOS 6 (root required not sudo)
54
55
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ # ##########################
4
+ # Docker SETUP
5
+ # ##########################
6
+ apt-get update
7
+ apt-get install -y docker.io
8
+
9
+ echo " Docker Setup complete"
10
+
11
+ # ##########################
12
+ # NodeJS setup
13
+ # ##########################
14
+ apt-get update
15
+ apt-get install -y nodejs
16
+ apt-get install -y npm
17
+ echo " NodeJS setup Complete"
18
+
19
+ # ##########################
20
+ # Start Docker
21
+ # ##########################
22
+ chmod 777 ../API/DockerTimeout.sh
23
+ chmod 777 ../API/Payload/script.sh
24
+ chmod 777 ../API/Payload/javaRunner.sh
25
+ chmod 777 UpdateDocker.sh
26
+
27
+ systemctl restart docker
28
+ ./UpdateDocker.sh
You can’t perform that action at this time.
0 commit comments