Hello,
I have been stuck for several days on an installation of Guacamole in
Docker (via openmediavault) on an ARM architecture (raspberry PI 5) I tried
several images I use the “oznu/guacamole:armhf” image which seems to
support ARM, but I always see the same error message in the logs, despite
the different configurations. A problem accessing the libsystemd.so library
*guacamole | postgres: error while loading shared libraries:
libsystemd.so.0: ELF load command alignment not page-aligned *
*guacamole | /var/run/postgresql:5432 - no response*
Here is my yml file:
services:
guacamole:
image: oznu/guacamole:armhf
container_name: guacamole
restart: always
ports:
- "8082:8080"
environment:
- GUACD_HOSTNAME=guacd
- POSTGRES_HOSTNAME=postgres
- POSTGRES_DATABASE=guacamole_db
- POSTGRES_USER=guacamole_user
- POSTGRES_PASSWORD= password
- GUACAMOLE_HOME=/config
volumes:
- ./config:/config
- ./logs:/logs
depends_on:
- postgres
- guacd
postgres:
image: postgres:latest
container_name: guacamole-postgres
restart: always
environment:
POSTGRES_DB: guacamole_db
POSTGRES_USER: guacamole_user
POSTGRES_PASSWORD: password
volumes:
- ./postgres:/var/lib/postgresql/data
platform: linux/arm64
guacd:
image: guacd-arm
container_name: guacd
platform: linux/arm64
restart: always
Can you help me ?
What are good Guacamole, Postgre and guacd images to use for an ARM
architecture ?
Thanks,
Best Regards,
O.K.