docker-compose up -d nginx 报错

在阿里云ECS上创建nginx容器时,报错如上图。

 

The solution:

In your Dockerfile, before running any apt commands, add the following line:

RUN printf "deb http://archive.debian.org/debian/ jessie main\ndeb-src http://archive.debian.org/debian/ jessie main\ndeb http://security.debian.org jessie/updates main\ndeb-src http://security.debian.org jessie/updates main" > /etc/apt/sources.list

This enables apt to run from the new sources.

It's possible the debian:jesse Docker image will be updated to work correctly in the near future, but until then this will allow you to keep working

 

 

参考链接:https://superuser.com/questions/1423486/issue-with-fetching-http-deb-debian-org-debian-dists-jessie-updates-inrelease

posted on 2019-05-28 15:44  Karlkiller  阅读(1039)  评论(0编辑  收藏  举报

导航