在我的 docker 上运行 ActiveMQ Artemis,特别是在 mac M1 上

Sam*_*var 3 docker docker-compose activemq-artemis

我正在尝试在我的 docker 上运行 ActiveMQ Artemis,但在尝试使其正常工作时我收到了许多错误。我不确定这是否与我的 yml 文件有关。

这是我正在使用的命令: docker-compose up

这是我的 yml 文件:

version: '2'

services:

  artemis:
    image: quay.io/artemiscloud/activemq-artemis-broker
    ports:
      - "8161:8161"
      - "61616:61616"
      - "5672:5672"
    environment:
       ARTEMIS_USERNAME: "admin"
       ARTEMIS_PASSWORD: "admin"
    networks:
      - amqp-quickstart-network
networks:
  amqp-quickstart-network:

Run Code Online (Sandbox Code Playgroud)

我收到此错误,但不知道如何解决此问题。

Attaching to infrastructure-artemis-1
infrastructure-artemis-1  | Creating Broker with args --role admin --name broker --allow-anonymous --http-host 172.19.0.2 --host 172.19.0.2  --force
infrastructure-artemis-1  | Cannot initialize queue:Function not implemented
infrastructure-artemis-1  |
infrastructure-artemis-1  | usage: artemis <command> [<args>]
infrastructure-artemis-1  |
infrastructure-artemis-1  | The most commonly used artemis commands are:
infrastructure-artemis-1  |     address    Address tools group (create|delete|update|show) (example ./artemis address create)
infrastructure-artemis-1  |     browser    It will browse messages on an instance
infrastructure-artemis-1  |     check      Check tools group (node|queue) (example ./artemis check node)
infrastructure-artemis-1  |     consumer   It will consume messages from an instance
infrastructure-artemis-1  |     create     creates a new broker instance
infrastructure-artemis-1  |     data       data tools group (print|recover) (example ./artemis data print)
infrastructure-artemis-1  |     help       Display help information
infrastructure-artemis-1  |     mask       mask a password and print it out
infrastructure-artemis-1  |     perf       Perf tools group (example ./artemis perf client)
infrastructure-artemis-1  |     producer   It will send messages to an instance
infrastructure-artemis-1  |     queue      Queue tools group (create|delete|update|stat|purge) (example ./artemis queue create)
infrastructure-artemis-1  |     transfer   Moves Messages from one destination towards another destination
infrastructure-artemis-1  |     version    print version information
infrastructure-artemis-1  |
infrastructure-artemis-1  | See 'artemis help <command>' for more information on a specific command.
infrastructure-artemis-1  |
infrastructure-artemis-1  | Running Broker
infrastructure-artemis-1  | /opt/amq/bin/launch.sh: line 47: /home/jboss/broker/bin/artemis: No such file or directory
infrastructure-artemis-1 exited with code 127
Run Code Online (Sandbox Code Playgroud)

MC *_*ror 5

我必须在 Docker 中启用 Rosetta 才能使其工作。

\n

Docker 设置\xe2\x86\x92开发中的功能\xe2\x86\x92 检查\xe2\x98\x91 在 Apple Silicon 上使用 Rosetta 进行 x86/amd64 模拟,然后重新启动 Docker。

\n