반응형 coding/Docker2 [Docker]맥북 M1 빌드 오류(linux/arm64, linux/amd64) 1. 맥북 M1 build 에러코드 WARNING: The requested image's platform (linux/arm64/v8) does not match the detected host platform (linux/amd64) and no specific platform was requested standard_init_linux.go:228: exec user process caused: exec format error 문제점 M1 Mac book에서 Dockerfile를 Image로 빌드하고 aws ec2 ubuntu 서버에서 docker pull하면서 오류가 발생했다. 이유는 m1칩에서는 빌드할때 linux/arm64로 빌드가 되어서 ubuntu에서는 run이 되지 않는 것이였습니다. 즉.. 2022. 3. 13. [Docker]도커 시작하기 1. Doker 란? 어플리케이션을 패키징할 수 있는 tool입니다. Container에 version, system tool과 dependencies을 저장해놓고 어느 컴퓨터 어느 운영체계에서도 나의 프로젝트를 운영할 수 있게 해주는 tool이라고 생각합니다. container을 만들때 필요한 3가지 Dockerfile Image Container 2. Doker 다운로드. 도커 홈페이지에 접속해서 docker를 다운받아주시면 됩니다. 컴퓨터 운영체계에 맞는 docker를 다운받아 주시면 됩니다. 3. Dockerfile dockerfile를 생성하기전에 전에 만들어 놓은 express 프로젝트를 활용해서 dockerfile를 생성해보겠습니다. express를 사용해 보지 않은분들은 docker를 시작.. 2022. 3. 11. 이전 1 다음 반응형