0%

docker 오류 정리

docker 환경 구성시 발생한 오류와 해결 방법을 정리합니다.

standard_init_linux.go:207: exec user process caused “exec format error”

원인
EntryPoint 을 Dockerfile 을 통해 build 하고 docker run 을 실행할 경우 발생할 수 있습니다.

해결
EntryPoint 파일의 권한이기때문에 755 또는 777 로 변경후 build 를하면 해결될 수 있습니다.

request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

해결
Settings -> Network -> DNS Server 를 Fixed: 8.8.8.8 로 변경 후 docker service 재시작

Is this ok [y/d/N]: Exiting on user command The command Your transaction was saved, rerun it with: ‘/bin/sh -c yum install php’ returned a non-zero code: 1

원인
설치과정에서 Y,N 입력에 대한 응답이 없기때문에 오류와 함께 종료될 수 있습니다.

해결
yum -y install php 로 변경하여 수정.

Cannot find a valid baseurl for repo: base/7/x86_64…

상세

1
2
3
Cannot find a valid baseurl for repo: base/7/x86_64
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"

해결
Restart docker for window service