도커 컨테이너 관리 실습
1. 이미지 다운로드 - httpd:latest, centos:7, ubuntu:latest docker image pull httpd docker image pull centos:7 docker image pull ubuntu 2. 다운로드 한 이미지 확인 docker image ls # docker image inspect ubuntu:latest 3. 이미지를 이용해서 컨테이너 실행 1) create 명령어와 start 명령어로 centos:7 이미지 실행 - 이름: centos docker container create -it --name centos -it centos:7 docker container start centos # 만약 start 명령어 사용 시 -ai 옵션으로 연결한다면, Ctr..