I need to disable docker services when Ubuntu 18.04 starts. I tried with:
update-rc.d -f <service> remove
but this doesn't work.
I need to disable docker services when Ubuntu 18.04 starts. I tried with:
update-rc.d -f <service> remove
but this doesn't work.
The command to disable services on rebooting of Ubuntu based systems
systemctl disable servicename
for centos6: chkconfig servicename off
systemctl disable $servicename
. – PerlDuck Sep 08 '18 at 17:02