Created
September 29, 2015 19:15
-
-
Save jthmiranda/88d7b3fcd7271dff3dd0 to your computer and use it in GitHub Desktop.
to enable again when docker daemon is masked... yet don't know why happen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# when you try to start docker | |
# sudo systemctl start docker | |
# and the output is: Failed to start docker.service: Unit docker.service is masked. | |
# | |
# | |
# ls -la /etc/systemd/system | grep docker | |
# see for /dev/null if there is | |
systemctl unmask docker.service | |
systemctl unmask docker.socket | |
systemctl start docker.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment