File tree 6 files changed +42
-0
lines changed
6 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
.DS_Store ?
3
+ .idea /
4
+ .git /
Original file line number Diff line number Diff line change @@ -4,3 +4,12 @@ Various Dockerfiles for various builds
4
4
### dawn-2.x
5
5
6
6
- ` 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.
Original file line number Diff line number Diff line change
1
+ # Dawn 2x
2
+
3
+ ### Dockerfile-icculusc
4
+
5
+ This Dockerfile mounts no volumes, and doesn't come with a docker-compose.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 `
You can’t perform that action at this time.
0 commit comments