New variable for docker home

It is set to /srv/docker by default since shellpki requires exec option
on the partition, making the playbook failed otherwise.
This commit is contained in:
Romain Dessort 2017-09-29 09:27:35 -04:00
parent 9f9894344d
commit 3409f87125
1 changed files with 5 additions and 2 deletions

View File

@ -1,12 +1,15 @@
---
docker_tmpdir: /home/docker/tmp
# If docher_home sets to /home/, the partition should be mounted with exec
# option.
docker_home: /srv/docker
docker_tmpdir: "{{docker_home}}/tmp"
docker_remote_access_enabled: True
docker_daemon_port: 2376
docker_daemon_listening_ip: 0.0.0.0
docker_tls_enabled: True
docker_tls_path: /home/docker/tls
docker_tls_path: "{{docker_home}}/tls"
docker_tls_ca: ca/ca.pem
docker_tls_ca_key: ca/ca-key.pem
docker_tls_cert: server/cert.pem