Linux下安装Docker-compose的记录

作者: 猪大圣三七 | 来源:发表于2020-01-02 18:16 被阅读0次
前言:这段时间都是在用Vagrant下Centos7学习Docker,安装个docker-composer也是艰辛不断。。

Dokcer-compose

先简单介绍下,docker-compose是一种Docker官方编排工具,负责实现对Docker容器集群的快速编排。
定位:定义和运行多个Docker容器的应用。

我为什么要使用它,主要是因为它能够更快捷的编排我的容器,且使用yml启动容器非常快捷。(暂时还没深入到K8s,大佬勿喷。。)

进入正题:

想安装docker-compose那肯定要到官方文档安装靠谱啦!
地址:https://docs.docker.com/compose/install/

image.png

我在执行第一条命令,就报错:

curl: (35) Peer reports incompatible or unsupported protocol version.

说我Linux需要更新curl,果断执行更新命令:

yum update -y nss curl libcurl

无奈报错,各种翻阅资料。。
报错如下:

yum update
Loaded plugins: fastestmirror
base                                                                                                                                                  | 3.6 kB  00:00:00


 One of the configured repositories failed (Unknown),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=<repoid> ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable <repoid>
        or
            subscription-manager repos --disable=<repoid>

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again

研究发现重点是最后一行 for repository: epel/x86_64. 说明是这个仓储出了问题。

解决办法

把这个库删除

rm -f mv /etc/yum.repos.d/epel.repo

这样执行yum命令就可以正确的执行。不过少了 epel 仓库好多软件包不能用。但是没关系,对于现在的我没有到那个需求。

而后再执行

curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

总算能够跑通。
最后感谢这个博主的分享解决我的问题
https://www.lampfree.com/linux/37.html

相关文章

  • Docker Issue

    安装docker CentOS 7 安装 docker-compose Linux 下的 Docker 安装与使用...

  • Linux下安装Docker-compose的记录

    前言:这段时间都是在用Vagrant下Centos7学习Docker,安装个docker-composer也是艰辛...

  • Linux上通过Docker搭建Swoft

    一、在 Linux 上安装 Docker 与 docker-compose 在 Linux 上通过 yum 和 a...

  • 解决 curl: (35) Encountered end of

    问题 在 Linux 服务器上(Centos 7)安装 docker-compose 时安装失败了,执行的安装命令...

  • Docker安装MySQL

    这里记录一下使用Docker-compose安装MySQL的笔记 1、创建Dockerfile 首先,创建目录my...

  • Drone+Gitea搭建

    安装docker和docker-compose 不同的Linux系统安装方式均不相同,请参见 菜鸟教程Docker...

  • fdfs文件服务环境搭建详细教程

    前言 Linux环境搭建少不了FastDFS的安装,本文记录Linux环境下安装fdfs的步骤。 一、安装包和环境...

  • Linux下安装JDK

    本主要是记录一下linux下安装JDK 的过程. 目前只包含在Linux安装OpenJDK. 后面内容会逐渐丰富....

  • linux上安装jdk(tar.gz)

    在linux环境下安装软件有3种方式,常用的是二进制安装(tar.gz或者rmp),本文记录的是在linux下安装...

  • Linux下安装Oracle11g

    Linux下安装Oracle11g 此次为本次在Linux下安装Oracle时的过程,记录下来以便今后查看使用。 ...

网友评论

    本文标题:Linux下安装Docker-compose的记录

    本文链接:https://www.haomeiwen.com/subject/hcqboctx.html