docker build -t xbf/hello_nginx报错

来源:3-2 dockerfile实战

慕函数7399925

2018-12-05 14:03

我输入这个命令后,就出来这么一个报错

invalid argument "hello_nginx." for t: Error parsing reference: "hello_ng

inx." is not a valid repository/tag: invalid reference formatSee 'docker build --help'.


FROM ubuntu
MAINTAINER xbf
RUN sed -i 's/archive.ubuntu.com/mirrrosl.ustc.edu.cn/g' /etc/apt/sources
.listRUN apt-get update
RUN apt-get install -y nginx
COPY index.html /var/www/html
ENTRYPOINT ["/usr/sbin/nginx","-g","daemon off:"]
EXPOSE 80

我的dockerfile里的内容,和视频里的一样

写回答 关注

1回答

  • 慕斯0052974
    2018-12-07 10:39:26

    错误提示你的tag的名字是无效的


Docker入门

再不学点Docker你就out啦!

97054 学习 · 242 问题

查看课程

相似问题