잘못된 정보가 있다면, 꼭 댓글로 알려주세요(비로그인 익명도 가능).

여러분의 피드백이 저와 방문자 모두를 올바른 정보로 인도할 수 있습니다.

감사합니다. -현록

후원해주실 분은 여기로→

현록의 기록저장소

Docker 이미지들 (Docker Hub) 본문

Study/Docker

Docker 이미지들 (Docker Hub)

현록 2021. 3. 31. 20:51

[갖고있는 이미지 조회]

 

$ sudo docker images

REPOSITORY   TAG       IMAGE ID       CREATED        SIZE

centos       latest    300e315adb2f   3 months ago   209MB

 

 


[Docker Hub에서 내려받을 수 있는 이미지 검색]

 

$ sudo docker search 검색어

NAME                               DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED

centos                             The official build of CentOS.                   6484      [OK]

ansible/centos7-ansible            Ansible on Centos7                              133                  [OK]

consol/centos-xfce-vnc             Centos container with "headless" VNC session…   127                  [OK]

jdeathe/centos-ssh                 OpenSSH / Supervisor / EPEL/IUS/SCL Repos - …   117                  [OK]

centos/systemd                     systemd enabled base container.                 97                   [OK]

imagine10255/centos6-lnmp-php56    centos6-lnmp-php56                              58                   [OK]

tutum/centos                       Simple CentOS docker image with SSH access      47

centos/postgresql-96-centos7       PostgreSQL is an advanced Object-Relational …   45

kinogmt/centos-ssh                 CentOS with SSH                                 29                   [OK]

pivotaldata/centos-gpdb-dev        CentOS image for GPDB development. Tag names…   13

guyton/centos6                     From official centos6 container with full up…   10                   [OK]

centos/tools                       Docker image that has systems administration…   7                    [OK]

drecom/centos-ruby                 centos ruby                                     6                    [OK]

pivotaldata/centos                 Base centos, freshened up a little with a Do…   5

darksheer/centos                   Base Centos Image -- Updated hourly             3                    [OK]

pivotaldata/centos-mingw           Using the mingw toolchain to cross-compile t…   3

pivotaldata/centos-gcc-toolchain   CentOS with a toolchain, but unaffiliated wi…   3

indigo/centos-maven                Vanilla CentOS 7 with Oracle Java Developmen…   2                    [OK]

amd64/centos                       The official build of CentOS.                   2

miko2u/centos6                     CentOS6 日本語環境                               2                    [OK]

mcnaughton/centos-base             centos base image                               1                    [OK]

blacklabelops/centos               CentOS Base Image! Built and Updates Daily!     1                    [OK]

pivotaldata/centos6.8-dev          CentosOS 6.8 image for GPDB development         0

pivotaldata/centos7-dev            CentosOS 7 image for GPDB development           0

smartentry/centos                  centos with smartentry                          0                    [OK]

 

 


[Docker Hub]

 

https://hub.docker.com/

 

 


[Docker Hub 이미지 내려받기]

 

$ sudo docker pull 이미지명

Using default tag: latest

latest: Pulling from library/centos

7a0437f04f83: Pull complete

Digest: sha256:5528e8b1b1719d34604c87e11dcd1c0a20bedf46e83b5632cdeac91b8c04efc1

Status: Downloaded newer image for centos:latest

docker.io/library/centos:latest

 

 


[가진 이미지 삭제]

 

$ sudo docker rmi [옵션] 이미지명이나ID [이미지명이나ID...]

이미지ID를 공백으로 구분하여 여러 개 동시에 삭제 가능

 

$ sudo docker rmi -f 이미지명이나ID [이미지명이나ID...]

이미지를 사용하는 컨테이너까지 강제로 삭제하려면, -f 옵션

 

Untagged: centos:latest

Untagged: centos@sha256:5528e8b1b1719d34604c87e11dcd1c0a20bedf46e83b5632cdeac91b8c04efc1

Deleted: sha256:300e315adb2f96afe5f0b2780b87f28ae95231fe3bdd1e16b9ba606307728f55

Deleted: sha256:2653d992f4ef2bfd27f94db643815aa567240c37732cae1405ad1c1309ee9859

 

 

'Study > Docker' 카테고리의 다른 글

Dockerfile 작성 (Dockerfile로 배포)  (0) 2023.01.03
Docker 마운팅  (0) 2021.04.02
Docker 실행  (0) 2021.04.01
Docker 설치  (0) 2021.03.31
도커 자료 (외부 링크, 백업)  (0) 2021.03.31
Comments

잘못된 정보가 있다면, 꼭 댓글로 알려주세요(비로그인 익명도 가능).

여러분의 피드백이 저와 방문자 모두를 올바른 정보로 인도할 수 있습니다.

감사합니다. -현록

후원해주실 분은 여기로→