본문 바로가기
항해99/ERROR

Docker Error

by lucian 2022. 7. 31.

항해99 주특기 심화 4주차 학습자료 중 Docker를 이용하여 MySQL 서버를 띄울수 있게 해주는 명령어 실행

docker run --rm -p 3306:3306 --name test-db -e MYSQL_ROOT_PASSWORD=1234 mysql:5.7 mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci

 

Error 발생

docker: Error response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file specified.
See 'docker run --help'.

 

 

해결

cd "C:\Program Files\Docker\Docker"
./DockerCli.exe -SwitchDaemon

switchDaemon이란 것은 Linux 컨테이너에서 Windows 컨테이너로 전환해준단 이야기.

 

https://m.blog.naver.com/masterh87/221989720478

 

[도커(Docker)] 도커 기본 세팅 에러중 //./pipe/docker_engine: The system cannot find the file specified

도커를 windows10 pro 에 기본 설치프로그램 파일을 공식홈페이지에서 다운로드했다. https://www.docker.c...

blog.naver.com

 

댓글