728x90
반응형
Docker Install on Mac m1
dial unix docker.raw.sock: connect
CLI를 통해 Docker 이미지를 이것저것 불러오려다가 에러가 났습니다. docker GUI를 이용해 로그인도 해보고 TroubleShoot> Reset to factory defaults를 통해 초기화를 시킨 후 다음과 같은 명령어를 입력하니 docker pull로 docker 이미지가 잘 불러와지는 걸 확인했습니다.
$ docker run -it --rm -v /Users/username/rust-raspberrypi-OS-tutorials/01_wait_forever:/work/tutorial -w /work/tutorial rustembedded/osdev-utils
Dockerfile 에서 git clone 할 때는 ssh 말고 http 사용하기
RUN git clone https://github.com/datacharmer/test_db.git
docker: Error response from daemon: Get "https://registry-1.docker.io/v2/":
- Vmware에서 위와 같은 에러가 일어난다면
- 제어판 > 네트워크 및 인터넷 > 네트워크 연결로 들어가 인터넷 공유 설정을 해주자
- refer:https://forums.docker.com/t/error-response-from-daemon-get-https-registry-1-docker-io-v2/23741
- chetugatty Nov '16 The problem is now resolved after I connect docker VM to direct internet connection without any firewall. hence I expect this problem inside Corporate Network. anyone who experienc this issue please connect VM to direct internet.
- 제어판 > 네트워크 및 인터넷 > 네트워크 연결로 들어가 인터넷 공유 설정을 해주자
OCI runtime exec failed: exec failed: unable to start container process: open /dev/pts/0: operation not permitted: unknown
- AWS에서의 EC2에서 docker container를 띄울 때 위와 같은 에러가 일어난다면 selinux를 disable 시켜주자
- Reference
- 관련 github issuse: https://github.com/moby/moby/issues/43969
- CentOS에서 SELINUX 끄기
- Reference
## Reference Link
728x90
반응형
'ETC > Dockerizing' 카테고리의 다른 글
[Docker] Docker에서 MySQL 사용 시 참고할 부분들 (0) | 2023.08.20 |
---|---|
[Docker] MySQL Container에 스크립트 파일 실행하기 (0) | 2022.03.07 |
[Docker]CentOS로 systemctl 사용하기 (0) | 2022.02.08 |