-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bob Killen
authored
Feb 1, 2017
1 parent
a5e5e84
commit 51eab69
Showing
27 changed files
with
132 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
AllCops: | ||
TargetRubyVersion: 2.3 | ||
|
||
Metrics/LineLength: | ||
Max: 99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
1.1.1: | ||
- Resolve Python Docker Library issue | ||
- Rename tasks to be more clear | ||
|
||
1.1.0: | ||
- Add overlay2 storage driver support for Ubuntu 16.04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
|
||
- name: Configure Docker Engine Repo | ||
- name: INSTALL - Configure Docker Engine Repo | ||
include: '{{ ansible_os_family|lower }}/repo.yml' | ||
when: docker_manage_engine_repo|bool == true | ||
|
||
- name: Install and Configure Docker Engine | ||
- name: INSTALL - Install and Configure Docker Engine | ||
include: '{{ ansible_os_family|lower }}/engine_install.yml' | ||
|
||
- name: Configure Docker Engine Users and Groups | ||
- name: INSTALL - Configure Docker Engine Users and Groups | ||
include: 'users_and_groups.yml' | ||
when: (docker_manage_engine_users|bool == true) and (docker_engine_users is defined) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
--- | ||
|
||
- name: Add Docker Repo | ||
- name: INSTALL - REPO - Add Docker Repo | ||
template: | ||
src: templates/engine/yum_docker_engine_repo.j2 | ||
dest: /etc/yum.repos.d/Docker.repo | ||
src: templates/engine/yum_docker_engine_repo.j2 | ||
dest: /etc/yum.repos.d/Docker.repo | ||
owner: root | ||
group: root | ||
group: root | ||
mode: '0644' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
|
||
- name: Create Docker Engine Group | ||
- name: INSTALL - USERS - Create Docker Engine Group | ||
group: name=docker system=yes state=present | ||
|
||
- name: Add Users to Docker Engine group | ||
- name: INSTALL - USERS - Add Users to Docker Engine group | ||
user: name='{{ item }}' append=yes groups=docker state=present | ||
with_items: '{{ docker_engine_users|default([]) }}' |
Oops, something went wrong.