카테고리 없음

[Docker] Cannot connect to the Docker daemon

sunny.ryu 2022. 1. 11. 22:00

야심차게 도커를 실행했지지만-

인프런 인강을 따라서 ubuntu 20.04 컨테이너를 만들려고 했더니 안됨... ㅠㅠ

 

Error message: Cannot connect to the Docker daemon at unix:/var/run/docker.sock. Is the docker daemon running?

검색을 해보니 내 도커는 inactive된 상태였다.

$ sudo systemctl status docker

구글링한데로 도커를 실행해주는 명령어를 입력했다.

$ sudo systemctl start docker

 

아까와는 달리 active 상태로 바뀐 걸 확인할 수 있다 :)

 

[Docker] Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 해결 방법

오랜만에 mac에서 Docker ( 도커 ) 를 사용하고자 $ sudo docker ps 현재 어떤 컨테이너가 떠있는지 확인해보기 위해 위의 명령어를 실행했는데 Cannot connect to the Docker daemon at unix:///var/run/docker...

somjang.tistory.com