docker 설치 썸네일형 리스트형 CentOS7 docker 설치 1. docker 설치 [root@localhost ~]# yum -y install docker 2. CentOS 공식 이미지 파일 다운로드 [root@localhost ~]# docker pull centos * 설치된 이미지 확인[root@localhost ~]# docker images 3. 컨테이너에서 echo 실행 [root@localhost ~]# docker run centos /bin/echo "Welcome to the Docker World"Welcom to the Docker World 4. 컨테이너 생성(i 옵션은 STDIN과 관련된 -t 옵션은 TTY와 관련된 옵션) [root@localhost ~]# docker run -i -t centos /bin/bash -> exit 명.. 더보기 이전 1 다음