2017-09-29 21 views
1

Docker EE for Windows Server 2016がインストールされ、hello-worldの例を取得して実行できました。Windows用Dockerで「docker pull redis」が失敗する

私は "ドッキングウィンドウプルRedisのを" 起動したとき、私が取得:

Using default tag: latest 
latest: Pulling from library/redis 
no matching manifest for windows/amd64 in the manifest list entries 

マイドッキングウィンドウのバージョン:

Client: 
Version:  17.10.0-ee-preview-2 
API version: 1.32 
Go version: go1.8.3 
Git commit: 10e292d 
Built:  Thu Sep 21 19:58:53 2017 
OS/Arch:  windows/amd64 

Server: 
Version:  17.10.0-ee-preview-2 
API version: 1.32 (minimum version 1.24) 
Go version: go1.8.3 
Git commit: 777d4a1 
Built:  Thu Sep 21 20:08:05 2017 
OS/Arch:  windows/amd64 
Experimental: false 

ない私がここで間違ってやっているかわからを。

+1

「docker pull redis」を使用している場合は、イメージを構築していないような[official](https://hub.docker.com/_/redis/)redis repoから引き出しようとしていますあなたのアーキテクチャ代わりに[this](https://hub.docker.com/r/winamd64/redis/)['docker pull winamd64/redis']を試して、動作するかどうか確認してください。 – Technext

+2

[Windows上でubuntuコンテナを実行するにはどうすればいいですか?](https://stackoverflow.com/questions/46474777/how-do-i-run-an-ubuntu-container-on-windows) –

+0

@Technext 、それはhttps://github.com/MicrosoftArchive/redisから来ているように見えますが、これはもはや維持されていません。 – Vince

答えて

1

ドッカーの情報が示すように、サーバーは実験モードで起動されません。

windows server上でexperiementalモードでドッカーサーバーを起動する必要があります。どうすればいいか確認するにはlinux-containers-on-windowsをチェックしてください。

関連する問題