0 votes
in Docker by
How can you control Docker using systemd?

1 Answer

0 votes
by

We can use the following commands if we want to control Docker using the systemd:

$ systemctl start/stop docker
$ service docker start/stop

These commands help us to start and stop Docker services in our machines.

...