[root@192 ~]# docker search centos NAME ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DESCRIPTION ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? STARS ? ? OFFICIAL ? AUTOMATED centos ? ? ? ? ? ? ? ? ? ? ? ? ? ?The official build of CentOS. ? ? ? ? ? ? ? ? ? 7067 ? ? ?[OK] ? ? ?? centos/systemd ? ? ? ? ? ? ? ? ? ?systemd enabled base container. ? ? ? ? ? ? ? ? 105 ? ? ? ? ? ? ? ? ?[OK] centos/mysql-57-centos7 ? ? ? ? ? MySQL 5.7 SQL database server ? ? ? ? ? ? ? ? ? 92 ? ? ? ? ? ? ? ? ?? centos/postgresql-96-centos7 ? ? ?PostgreSQL is an advanced Object-Relational … ? 45 ? ? ? ? ? ? ? ? ?? centos/httpd-24-centos7 ? ? ? ? ? Platform for running Apache httpd 2.4 or bui… ? 43 ? ? ? ? ? ? ? ? ?? centos/python-35-centos7 ? ? ? ? ?Platform for building and running Python 3.5… ? 39 ? ? ? ? ? ? ? ? ?? centos/php-56-centos7 ? ? ? ? ? ? Platform for building and running PHP 5.6 ap… ? 34 ? ? ? ? ? ? ? ? ?? centos/mysql-56-centos7 ? ? ? ? ? MySQL 5.6 SQL database server ? ? ? ? ? ? ? ? ? 22 ? ? ? ? ? ? ? ? ?? centos/postgresql-10-centos7 ? ? ?PostgreSQL is an advanced Object-Relational … ? 19 ? ? ? ? ? ? ? ? ?? kasmweb/centos-7-desktop ? ? ? ? ?CentOS 7 desktop for Kasm Workspaces ? ? ? ? ? ?16 ? ? ? ? ? ? ? ? ?? centos/nginx-112-centos7 ? ? ? ? ?Platform for running nginx 1.12 or building … ? 16 ? ? ? ? ? ? ? ? ?? centos/mariadb-101-centos7 ? ? ? ?MariaDB 10.1 SQL database server ? ? ? ? ? ? ? ?13 ? ? ? ? ? ? ? ? ?? centos/nginx-18-centos7 ? ? ? ? ? Platform for running nginx 1.8 or building n… ? 13 ? ? ? ? ? ? ? ? ?? centos/mongodb-36-centos7 ? ? ? ? MongoDB NoSQL database server ? ? ? ? ? ? ? ? ? 8 ? ? ? ? ? ? ? ? ? ? centos/redis-32-centos7 ? ? ? ? ? Redis in-memory data structure store, used a… ? 6 ? ? ? ? ? ? ? ? ? ? centos/mariadb-102-centos7 ? ? ? ?MariaDB 10.2 SQL database server ? ? ? ? ? ? ? ?6 ? ? ? ? ? ? ? ? ? ? continuumio/centos5_gcc5_base ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 ? ? ? ? ? ? ? ? ? ? centos/ruby-25-centos7 ? ? ? ? ? ?Platform for building and running Ruby 2.5 a… ? 3 ? ? ? ? ? ? ? ? ? ? centos/mongodb-34-centos7 ? ? ? ? MongoDB NoSQL database server ? ? ? ? ? ? ? ? ? 3 ? ? ? ? ? ? ? ? ? ? kasmweb/core-centos-7 ? ? ? ? ? ? CentOS 7 base image for Kasm Workspaces ? ? ? ? 1 ? ? ? ? ? ? ? ? ? ? bitnami/centos-base-buildpack ? ? Centos base compilation image ? ? ? ? ? ? ? ? ? 0 ? ? ? ? ? ? ? ? ? ?[OK] ibmcom/fhe-toolkit-centos ? ? ? ? The IBM Fully Homomorphic Encryption (FHE) T… ? 0 ? ? ? ? ? ? ? ? ? ? ibmcom/fhe-toolkit-centos-amd64 ? The IBM Fully Homomorphic Encryption (FHE) T… ? 0 ? ? ? ? ? ? ? ? ? ? bitnami/centos-extras-base ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?0 ? ? ? ? ? ? ? ? ? ? datadog/centos-i386?
[root@192 ~]# docker pull centos Using default tag: latest latest: Pulling from library/centos a1d0c7532777: Pull complete? Digest: sha256:a27fd8080b517143cbbbab9dfb7c8571c40d67d534bbdee55bd6c473f432b177 Status: Downloaded newer image for centos:latest docker.io/library/centos:latest
[root@192 ~]# docker images REPOSITORY ? ?TAG ? ? ? IMAGE ID ? ? ? CREATED ? ? ? ?SIZE centos ? ? ? ?latest ? ?5d0da3dc9764 ? 6 months ago ? 231MB
[root@192 ~]# docker run centos /bin/echo "Hello cookie" Hello cookie
[root@192 ~]# docker run -i -t centos /bin/bash [root@ef58949ccb5d /]# cat /proc/version? Linux version 3.10.0-1160.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) ) #1 SMP Mon Oct 19 16:18:59 UTC 2020 [root@ef58949ccb5d /]# cat /etc/redhat-release? CentOS Linux release 8.4.2105
[root@ef58949ccb5d ~]# exit exit [root@192 ~]#
[root@192 ~]# docker ps CONTAINER ID ? IMAGE ? ? COMMAND ? CREATED ? STATUS ? ?PORTS ? ? NAMES [root@192 ~]# docker run -d centos /bin/sh -c "while true; do echo hello cookie; sleep 1; done" 16e04eb2822ab11097d1dfe57356771e1a87d08559bb842ccde1f6e27dbcab85 [root@192 ~]# docker ps CONTAINER ID ? IMAGE ? ? COMMAND ? ? ? ? ? ? ? ? ?CREATED ? ? ? ? ?STATUS ? ? ? ? ?PORTS ? ? NAMES 16e04eb2822a ? centos ? ?"/bin/sh -c 'while t…" ? 24 seconds ago ? Up 23 seconds ? ? ? ? ? ? infallible_noether [root@192 ~]# docker logs 16e04eb2822a hello cookie hello cookie hello cookie hello cookie hello cookie hello cookie hello cookie [root@192 ~]# docker stop 16e04eb2822a 16e04eb2822a [root@192 ~]# docker ps CONTAINER ID ? IMAGE ? ? COMMAND ? CREATED ? STATUS ? ?PORTS ? ? NAMES [root@192 ~]#
|