Skip to content

Commit e1e5568

Browse files
authored
Merge pull request #34 from valff/feature/xenial
Added support of Ubuntu 16.04 LTS
2 parents d839b9d + 5627a23 commit e1e5568

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ No two codes have access to each other’s *Docker* or files.
4949
- Ubuntu 12.04 LTS
5050
- Ubuntu 13.10
5151
- Ubuntu 14.04 LTS
52+
- Ubuntu 16.04 LTS
5253
- Linux Mint 15
5354
- CentOS 6 (root required not sudo)
5455

Setup/Install_16.04.sh

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

0 commit comments

Comments
 (0)