我在我的文件结构中创建了一个Dockerfile
,构建了一个docker存储库,并尝试运行它,但我一直收到以下错误:
Error response from daemon: repository not found, does not exist, or no pull access
。
我对码头工作者来说很新,所以这里可能有什么问题?
我运行的命令:
docker build -t repoName .
docker run -d -p 8080:80 repoName
我的Dockerfile:
FROM nginx:1.10.3
RUN mkdir /app
WORKDIR /app
# Setup enviromnet
RUN apt-get update
RUN apt-get install -y curl tar
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y nodejs
# Do some building and copying
EXPOSE 80
CMD ["/bin/sh", "/app/run-dockerized.sh"]