我正在尝试根据此链接中的 dockerfile 文件创建一个 galera docker 映像http://galeracluster.com/documentation-webpages/docker.html
FROM ubuntu:14.04
MAINTAINER your name <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv BC19DDBA
RUN add-apt-repository 'deb http://releases.galeracluster.com/ubuntu trusty main'
RUN apt-get update
RUN apt-get install -y galera-3 galera-arbitrator-3 mysql-wsrep-5.6 rsync
COPY my.cnf /etc/mysql/my.cnf
ENTRYPOINT ["mysqld"]
但是我得到了这个错误
W: Failed to fetch http://releases.galeracluster.com/ubuntu/dists/trusty/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
你能帮帮我吗?两周前它还运行良好!有什么想法吗?
答案1
该存储库出现“404”错误,意味着它不再存在。
http://releases.galeracluster.com/ubuntu
14.04 已经过时了,他们似乎不再维护 14.04 的存储库。直接联系他们或升级到受支持的版本。
为了支持 :http://galeracluster.com/contact-us/
编辑:目前可以找到 trusty 的 deb 包这里