React

맥 도커 에러 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

Asset Type
docker
File Type
When to use
Created by
Last edited time
2022/05/05 13:01
위와 같은 명령어가 뜨면 docker service가 실행이 안되어있는것이다.
$sudo systemctl status docker
Docker
복사
상태를 확인해 봐라 stop일 것이다
아래 명령어를 입력해 주자. 그리고 다시 명령어를 실행해보자
$sudo systemctl start docker
Docker
복사
$sudo systemctl enable docker
Docker
복사
이렇게 하면 systemctl은 커맨드가 안 통한다. 위의 과정을 brew로 대신 할 수 있다.
brew services list | grep docker // 상태 보기
Docker
복사
Command + space 후 “docker”를 입력해서 도커를 실행시킨다.(도커 데스크탑, 클라이언트, 서버가 설치된 상태)
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose build
Docker
복사
실행이 시작된다.