如何在 Ubuntu 上启动 Docker 守护进程?
How to start Docker daemon on Ubuntu?
在 Windows 上,我一直能够毫无问题地构建 Docker 图像。
我现在正在尝试在 Ubuntu 18.04 上构建一个简单的 Docker 图像并在终端中输入:
sudo docker build -t test .
导致以下错误:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock.
Is the docker daemon running?
如何启动 Docker 守护程序?我希望能够成功构建镜像
编辑:
按照原始文档 https://docs.docker.com/config/daemon/systemd/ 中的说明输入 sudo systemctl start docker
会导致以下错误:
Failed to start docker.service: Unit docker.service is masked.
您可以配置 docker to start on boot :
sudo systemctl enable docker
丑陋的方式:手动启动 docker:
dockerd &
在 Windows 上,我一直能够毫无问题地构建 Docker 图像。
我现在正在尝试在 Ubuntu 18.04 上构建一个简单的 Docker 图像并在终端中输入:
sudo docker build -t test .
导致以下错误:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock.
Is the docker daemon running?
如何启动 Docker 守护程序?我希望能够成功构建镜像
编辑:
按照原始文档 https://docs.docker.com/config/daemon/systemd/ 中的说明输入 sudo systemctl start docker
会导致以下错误:
Failed to start docker.service: Unit docker.service is masked.
您可以配置 docker to start on boot :
sudo systemctl enable docker
丑陋的方式:手动启动 docker:
dockerd &