我在centos 9 stream使用版本为28.0.4的docker部署emqx:5.3.2时报错,提示
ERROR:
ERROR: Please ensure it is running on the correct platform:
ERROR: arch: “x86_64-pc-linux-gnu”
wordsize: 64
os: “debian11”
erlang: “25.3.2-2”
elixir: “none”
relform: “docker”
ERROR: Version=5.3.2
ERROR: Required dependencies: openssl-1.1.1 (libcrypto), libncurses and libatomic1
我在另外一台服务器,以同样的centos 9 stream使用版本为28.0.4的docker部署emqx:5.3.2,可以正常运行,请问是什么问题,dockercompose配置为
emqx:
image: emqx/emqx:5.3.2
privileged: true
environment:
TZ: Asia/Shanghai
ports:
- “18083:18083”
- “1883:1883”
- “8883:8883”
- “8085:8084”
volumes:
- ./conf/emqx/acl/acl.conf:/opt/emqx/etc/acl.conf
restart:
always