Skip to content

Instantly share code, notes, and snippets.

@veve90
Created October 7, 2017 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veve90/8d5a847e76cba7932ef36c66e44b9285 to your computer and use it in GitHub Desktop.
Save veve90/8d5a847e76cba7932ef36c66e44b9285 to your computer and use it in GitHub Desktop.
# install using steps https://docs.docker.com/engine/installation/linux/docker-ce/fedora/#install-using-the-repository
# erron while "sudo docker run hello-world"
# The error: Service lacks both ExecStart= and ExecStop= setting
# Solved with post https://success.docker.com/KBase/Using_systemd_to_control_the_Docker_daemon
#Solution:
sudo systemctl edit docker
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment