## Install apt HTTPS transport sudo apt-get install apt-transport-https
## Add Bintray repositories that provision latest RabbitMQ and Erlang 21.x releases sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.list <<EOF ## Installs the latest Erlang 21.x release. ## Change component to "erlang" to install the latest version (22.x or later). ## "bionic" as distribution name should work for any later Ubuntu or Debian release. ## See the release to distribution mapping table in RabbitMQ doc guides to learn more. deb https://dl.bintray.com/rabbitmq-erlang/debian bionic erlang-21.x deb https://dl.bintray.com/rabbitmq/debian bionic main EOF
## Update package indices sudo apt-get update -y
## Install rabbitmq-server and its dependencies sudo apt-get install rabbitmq-server -y --fix-missing
after run this instll shell script, it doesn’t work. I try docker image.