摘要: `docker 命令全集 一:首先来理解三个名词解释: 1、镜像(image) Docker 镜像(Image)就是一个只读的模板。例如:一个镜像可以包含一个完整的操作系统环境,里面仅安装了 Apache 或用户需要的其它应用程序。镜像可以用来创建 Docker 容器,一个镜像可以创建很多容器。 2 阅读全文
posted @ 2021-05-19 15:21 坏坏不坏 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # encoding: utf-8 import openpyxl import collections import json import commands #颜色显示 def blue(string): print ("\033[0;34m%s\033[0m" % string) def cyan(string): ... 阅读全文
posted @ 2018-06-07 17:45 坏坏不坏 阅读(5521) 评论(0) 推荐(0) 编辑