简体   繁体   中英

docker image of rabbitmq on windows server 2019

im tring to install docker image of rabbitmq on window server 2019 with the next command:

docker run -d -p 15672:15672 -p 5672:5672 --name rabbit-test-for-medium rabbitmq:3-management

but Im get the next error:

Unable to find image 'rabbitmq:3-management' locally
3-management: Pulling from library/rabbitmq
docker: no matching manifest for windows/amd64 10.0.17763 in the manifest list entries.
See 'docker run --help'.

How can I solve it? please help. Thanks.

It looks like you are running windows docker containers on your windows server. This is based on

docker: no matching manifest for windows/amd64 10.0.17763

Try swapping docker over to running linux containers either through hyper-v or wsl2

The only supported tags for 3-management for rabbitmq are 图片

these tags can be seen here

try to running the Docker daemon in experimental mode.

  1. Right click Docker instance
  2. Go to Settings
  3. Daemon
  4. Advanced
  5. Set the "experimental": true
  6. Restart Docker

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM