Connection refused on docker container

后端 未结 6 913
面向向阳花
面向向阳花 2020-12-13 05:47

I\'m new to Docker and trying to make a demo Rails app. I made a dockerfile that looks like this:

FROM ruby:2.2
MAINTAINER marko@codeship.com

# Install apt         


        
6条回答
  •  温柔的废话
    2020-12-13 06:25

    In Windows, you also normally need to run command line as administrator.

    As standard-user:

    docker build -t myimage -f Dockerfile .
    Sending build context to Docker daemon  106.8MB
    Step 1/1 : FROM mcr.microsoft.com/dotnet/core/runtime:3.0
    Get https://mcr.microsoft.com/v2/: dial tcp: lookup mcr.microsoft.com on [::1]:53: read udp [::1]:45540->[::1]:53: read: 
    >>>connection refused
    

    But as an administrator.

    docker build -t myimage -f Dockerfile .
    Sending build context to Docker daemon  106.8MB
    Step 1/1 : FROM mcr.microsoft.com/dotnet/core/runtime:3.0
    3.0: Pulling from dotnet/core/runtime
    68ced04f60ab: Pull complete                                                                                             e936bd534ffb: Pull complete                                                                                             caf64655bcbb: Pull complete                                                                                             d1927dbcbcab: Pull complete                                                                                             Digest: sha256:e0c67764f530a9cad29a09816614c0129af8fe3bd550eeb4e44cdaddf8f5aa40
    Status: Downloaded newer image for mcr.microsoft.com/dotnet/core/runtime:3.0
     ---> f059cd71a22a
    Successfully built f059cd71a22a
    Successfully tagged myimage:latest
    

提交回复
热议问题