I'm trying to run docker daemon using command:
docker -d
but I receive in console:
unknown shorthand flag: 'd' in -d
what should I do to run docker daemon?
If you stopped the service, you would need the following command to start it again:
$ sudo service docker start # for work with SysVinit
$ sudo systemctl start docker # for work with Systemd
Also to stopped again, you might use:
$ sudo service docker stop # for work with SysVinit
$ sudo systemctl stop docker # for work with Systemd
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With