2016-07-12 19 views
1

初めてDockerをセットアップしようとしています。だから、私はここのガイドを次のようだ:https://docs.docker.com/machine/get-started/Dockerはクライアントからhello-worldを実行できません

を今、私は次のコマンドを取得する場合:私は次のエラーを取得

docker run busybox echo hello world 

:今

$ docker run hello-world 
C:\Program Files\Docker Toolbox\docker.exe: An error occurred trying to connect: Post https://192.168.99.101:2376/v1.23/containers/create: Service Unavailable. 
See 'C:\Program Files\Docker Toolbox\docker.exe run --help'. 

を、私は背後にしています私の問題の原因となるかもしれない企業のプロキシです。私はこの記事に記載されている通りに設定しました:http://mflo.io/2015/08/13/docker-machine-behind-proxy/。ドッカー・マシン上

docker-machine ssh default 

    # now the command prompt will say something like: 
    # [email protected]:~$ 

    # we need root access: 
    sudo -s 

    # now the command prompt will say something like: 
    # [email protected]:~$ 

    # now configure the proxy 
    echo "export HTTP_PROXY=http://[uid]:[pw]@corporate.proxy.com:[port]" >> /var/lib/boot2docker/profile 
    echo "export HTTPS_PROXY=http://[uid]:[pw]@corporate.proxy.com:[port]" >> /var/lib/boot2docker/profile 

    # for verification 
    cat /var/lib/boot2docker/profile 

    # exit out of ssh session 
    exit 
    exit 

    # restart 
    docker-machine restart default 

    # now you should be able to proceed with installation steps 
    docker run hello-world 

を、私は絶対に"docker run hello-world"など"docker run busybox echo hello world"

に問題しかし、自分のコンピュータ上で、これと同じコマンドが常に同じエラーを返しませしまった...

:私がやりました

答えて

1

試してみてください。そして、

docker-machine stop default 
docker-machine start default 

そして、時には、あなたのアプリケーションを実行するにはネットワーク構成を更新しません再起動してください。

+0

私は違いなく、これを試してみました。 – CoachNono

関連する問題