Docker
-
도커 클라이언트(docker client)명령어 알아보기Docker 2022. 10. 29. 22:58
docker run alpine ls PS C:\Users\yunaj> docker run alpine ls bin dev etc home lib media mnt opt proc root run sbin srv sys tmp usr docker run hello-world ls - error가 난다. 왜냐하면 Alpine 이미지 파일 스냅샷안에 이미 ls를 사용 가능하게 하는 파일이 있지만 hell-world는 ls를 사용가능케 하는 파일이 없기 때문 - 이미지마다 실행할 수 있는 명령어가 다르다 PS C:\Users\yunaj> docker run hello-world ls docker: Error response from daemon: failed to create shim task: OCI run..
-
도커란(Docker)?!Docker 2022. 10. 29. 21:59
도커란?! 도커(Docker)실행해보기 1. 터미널에 커맨드(command)를 입력한다 docker run 이미지이름 2. 도커서버(도커 demon)가 그 커맨드를 받아 이미지를 생성 또는 컨데이너를 실행하게 된다 C:\Users\yunaj>docker run hello-world Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hell..