2021年7月24日

Docker搭建私有仓库(registry与Harbor)

摘要: 随着docker使用的镜像越来越多,就需要有一个保存镜像的地方,这就是仓库。目前常用的两种仓库:公共仓库和私有仓库。最方便的就是使用公共仓库上传和下载,下载公共仓库的镜像是不需要注册的,但是上传时,是需要注册的。 私有仓库最常用的就是registry、Harbor两种,那接下来详细介绍如何创建私有仓 阅读全文

posted @ 2021-07-24 15:44 Hi,王松柏 阅读(833) 评论(0) 推荐(0) 编辑

Centos7升级python2到python3

摘要: 服务器自带的python版本为2.7,需要升级到python3 安装 1 2 3 4 5 6 7 8 9 10 11 # 下载 wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz #解压源码包 tar -zxvf Python- 阅读全文

posted @ 2021-07-24 14:07 Hi,王松柏 阅读(182) 评论(0) 推荐(0) 编辑

centos7安装python3 (configure: error: no acceptable C compiler found in $PATH)

摘要: centos7 安装python3.6.9 安装依赖环境安装zlib-dev yum install zlib* -y (安装原因:报错:zipimport.ZipImportError)安装gcc yum install gcc -y (安装原因: configure: error: no acc 阅读全文

posted @ 2021-07-24 14:06 Hi,王松柏 阅读(275) 评论(0) 推荐(0) 编辑

导航