How to stop docker under Linux

前端 未结 3 548
北荒
北荒 2021-01-30 01:44

My version of OS Ubuntu 16.04. I want to stop docker, so I run in the terminal:

sudo systemctl stop docker

But this commands doesn

3条回答
  •  时光取名叫无心
    2021-01-30 01:56

    if you have no systemctl and started the docker daemon by:

    sudo service docker start
    

    you can stop it by:

    sudo service docker stop
    

提交回复
热议问题