Initial commit of role files and readme.

This commit is contained in:
Nils Cant
2019-08-20 15:04:06 +02:00
parent 93f28fc00e
commit 78965c8994
9 changed files with 115 additions and 0 deletions

13
tasks/docker.yml Normal file
View File

@@ -0,0 +1,13 @@
---
- name: Create docker systemd drop-in directory
file:
path: /etc/systemd/system/docker.service.d
state: directory
- name: Configure docker startup options
template:
src: docker-systemd-conf.j2
dest: /etc/systemd/system/docker.service.d/exec.conf
notify:
- restart docker
- systemctl daemon-reload