도커 퀵 스타트 docker 환경설정 mac - docker 데스크톱 docker run hello-world library : 도커 허브의 공식 이미지가 저장되어 있는 네임스페이스 local에서 hello-world:latest 를 찾을 수 없기 때문에 library/hello-world에서 pull 해오게 된다 docker image ls repository, tag 확인 가능 docker ps --all 여전히 running 중이면 --all 없이도 뜬다 Dockerfile Dockerfile 은 컨테이너를 위해 개인 파일 시스템을 조립하는 방법을 설명 응용 프로그램을 컨테이너화 하기 위함 docker build --tag bulletinboard:1.0 / successfully tagged bu..