You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a Puppet manifest running on Centos 7.1 that uses the 5.0 Docker Puppet module and Docker 1.10. When Puppet installs the Docker service, it creates a file /etc/systemd/system/docker.service.d/service-overrides.conf
Reviewing the Docker CLI doc it looks like newer Dockers require the argument daemon instead of -d. This was deprecated in 1.8 and removed in 1.10 (see deprecation notice)
and run systemctl daemon-reload and systemctl restart docker the service comes up fine.
I considered creating a PR to simply change the value, but I think that breaks it for folks using older Docker versions that require the -d instead of daemon, so the value of the argument should probably be in the template. This is above my Ruby-fu level, but I could give it a shot. I did not see another variable in the code deciding what parameter to use anywhere else.
I also thought it might be related to #432, but it does not seem so. Our problem is starting Docker.
The text was updated successfully, but these errors were encountered:
We have a Puppet manifest running on Centos 7.1 that uses the 5.0 Docker Puppet module and Docker 1.10. When Puppet installs the Docker service, it creates a file
/etc/systemd/system/docker.service.d/service-overrides.conf
Reviewing the Docker CLI doc it looks like newer Dockers require the argument
daemon
instead of-d
. This was deprecated in 1.8 and removed in 1.10 (see deprecation notice)So when I change the file to
and run
systemctl daemon-reload
andsystemctl restart docker
the service comes up fine.I considered creating a PR to simply change the value, but I think that breaks it for folks using older Docker versions that require the
-d
instead ofdaemon
, so the value of the argument should probably be in the template. This is above my Ruby-fu level, but I could give it a shot. I did not see another variable in the code deciding what parameter to use anywhere else.I also thought it might be related to #432, but it does not seem so. Our problem is starting Docker.
The text was updated successfully, but these errors were encountered: