IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> docker使用 -> 正文阅读

[系统运维]docker使用

[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 ~]#

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-03-16 22:58:21  更:2022-03-16 22:59:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 1:48:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码