Skip to content

Commit 5a9f8ef

Browse files
committed
readmes and bash installation script
1 parent a90904f commit 5a9f8ef

File tree

6 files changed

+42
-0
lines changed

6 files changed

+42
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.DS_Store
22
.DS_Store?
3+
.idea/
4+
.git/

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,12 @@ Various Dockerfiles for various builds
44
### dawn-2.x
55

66
- `Dockerfile` basic Dockerfile, installs required dependencies and runs the provided `build.sh` script *with no volumes*
7+
8+
9+
#### Contributing
10+
11+
If you would like to add dockerfiles here put them into folders under their branch name and name
12+
the `Dockerfile` with your name/organization as the maintainer. ( format: `Dockerfile-name` )
13+
14+
You must also add them to the `readme.md` inside of the folder along with any special steps or considerations
15+
that pertain to your dockerfile.
File renamed without changes.

dawn-2.x/readme.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Dawn 2x
2+
3+
### Dockerfile-icculusc
4+
5+
This Dockerfile mounts no volumes, and doesn't come with a docker-compose.yml

utilities/install_docker.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
sudo apt-get update
4+
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
5+
sudo apt-get install -y software-properties-common python-software-properties
6+
sudo apt-add-repository 'deb https://apt.dockerproject.org/repo ubuntu-xenial main'
7+
# -------------------
8+
# Taking care of some minimal ubuntu versions
9+
# -------------------------------
10+
touch /etc/apt/sources.list.d/docker.list
11+
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" >> /etc/apt/sources.list.d/docker.list
12+
# -------------------------------------------
13+
sudo apt-get update
14+
apt-cache policy docker-engine
15+
sudo apt-get install -y docker-engine

utilities/readme.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Utilities
2+
3+
#### install_docker.sh
4+
This is a simply bash script which will do all of the necessary things to install docker itself on
5+
various ubuntu versions.
6+
7+
Steps to use from your new dockerless server:
8+
9+
- copy paste the bash script into an `install_docker.sh` file.
10+
- `chmod +x install_docker.sh`
11+
- `./install_docker.sh`

0 commit comments

Comments
 (0)