我正在尝试创建一个基于这个http://galeracluster.com/documentation-webpages/docker.html链接的dockerfile文件的galera坞映像
FROM ubuntu:14.04
MAINTAINER your name <your.user@example.org>
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.你能帮帮我吗!!两周前对我来说很好!!知道吗??
发布于 2017-11-07 14:56:15
存储库提供一个"404“错误,这意味着它不再存在。
http://releases.galeracluster.com/ubuntu
14.04在牙齿中是相当长的,看起来他们不再为14.04维护一个存储库了。直接联系他们或升级到支持的版本。
支持:http://galeracluster.com/contact-us/
编辑:信任的deb包目前可以找到这里
https://askubuntu.com/questions/973929
复制相似问题