From 5939e64c1f54a35809c63b98554e9d864354afe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Oscarsson?= Date: Sun, 8 Jul 2018 13:54:00 +0200 Subject: [PATCH] Fixes #46 --- CHANGELOG.md | 1 + README.md | 2 +- defaults/main.yml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adf642b..9fd5134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Ansible Galaxy linting report error during import ([#45](../../issues/45)) +- null written to /etc/docker/daemon.json ([#46](../../issues/46)) ## [1.7.0](../../releases/tag/1.7.0) - 2018-07-08 diff --git a/README.md b/README.md index b6f846a..8f9020b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Variables related to this role are listed below: # Example: # docker_daemon_config: # experimental: true -docker_daemon_config: +docker_daemon_config: {} # Docker daemon options # Docker daemon is configured with '-H fd://' by default in Ubuntu/Debian which cause problems. # https://github.com/moby/moby/issues/25471 diff --git a/defaults/main.yml b/defaults/main.yml index ef7a3db..3297d46 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -5,7 +5,7 @@ # Example: # docker_daemon_config: # experimental: true -docker_daemon_config: +docker_daemon_config: {} # Docker daemon options # Docker daemon is configured with '-H fd://' by default in Ubuntu/Debian which cause problems. # https://github.com/moby/moby/issues/25471