CentOS에서 Docker 사용
개요
Windows 10 Pro 터미널에서 CentOS (클라우드) ssh로 연결하고, Docker의 설치에서 Hello-world 용기가 시작될 때까지 시도하십시오.
1.ssh기능 증가
ssh기능을 사용하지 않은 상태에서 ssh기능을 사용할 수 없는 상태이기 때문에 다음과 같은 방법으로 기능을 추가합니다.
• Windows에서 "option"을 입력하여 검색
· "추가 기능"누르기
· "OpenSSH 서버"추가
2. Hub OS에 연결
Windows PowerShell을 시작하고 다음을 수행합니다.
$ ssh "user name"@"ip address or host name"
※ 이하 루트 사용자로 로그인하여 시도해 보세요.3. 필요한 패키지 설치
# yum install -y yum-utils device-mapper-persistent-data lvm2
※ yum-utils 제공 yum-config-manager 유틸리티※ device-mapper-perrsistent-data,lvm2는 devicemapper를 이용해 드라이브를 저장하는 데 필요한
4. 창고 설치
# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
5. Docker CE 설치
최신 Docker CE 설치
# yum install docker-ce
※ 확인 키 지문은 060A61C51B558A7F4742AA C52F EB6B 621E9F356. Docker 시작
# systemctl start docker
7. Hello-world 컨테이너 시작
# 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 "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
위 메시지가 표시되면 정상적으로 시작됩니다.감상
첫 보도라 양이 적지만 앞으로 계속 보낼 것 같아요.
어쨌든 Docker로 자체 제작 컨테이너를 가동하는 게 목표야.
Reference
이 문제에 관하여(CentOS에서 Docker 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/taka_tech/articles/c1da848015896a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)