- docker download

http://hub.docker.com/

 

Docker Hub Container Image Library | App Containerization

Increase your reach and adoption on Docker Hub With a Docker Verified Publisher subscription, you'll increase trust, boost discoverability, get exclusive data insights, and much more.

hub.docker.com

docker search rocky
docker pull rockylinux/rockylinux:8

 

- image 목록

docker image ls

 

- container 생성

docker create -ti --name test_rocky rockylinux/rockylinux:8

 

- container 실행 및 진입

docker start test_rocky
docker container ps
docker attach test_rocky

+ Recent posts