aarch64 kylinV10 虚拟机Docker安装6.0.2版本报错

aarch64 kylinV10 虚拟机Docker安装6.0.2版本报错:

Message: The supplied GS_PASSWORD is meet requirements.

no data was returned by command “”/usr/local/opengauss/bin/gaussdb" -V"
The program “gaussdb” is needed by gs_initdb but was not found in the
same directory as “/usr/local/opengauss/bin/gs_initdb”.
Check your installation.

GS_PASSWORD已经指定过了,compose文件如下:

version: ‘3.8’
services:
opengauss:
image: opengauss:6.0.2
container_name: test-opengauss
restart: always
privileged: true # 添加特权模式
ports:
- “35432:5432”
environment:
- GS_PASSWORD=Test123@123
- GS_USERNAME=gaussdb
- GS_USER_PASSWORD=Test123@123
- GS_DB=test
- GS_PORT=5432
volumes:
- ./data:/var/lib/opengauss/data:z
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- ./sql:/sql