HI,
I don't think you will get support from the Guacamole team for unofficial
images.
More over, Oznu's image has been abandoned more than 3 years ago. There are
plenty of replacements. The most popular one was Max Waldorf's, now handed over
to flcontainers (flcontainers/guacamole but it has nothing in common with
Oznu's). I maintain one (abesnier/guacamole, trying to keep it as close as
possible to Oznu's image, and keeping it up to date with latest guacamole,
tomcat, postgres jdbc and s6 overlay).
Try also targeting arm64 images for a Raspeberry pi 5.
CheersAntoine
Le jeudi 30 mai 2024 à 15:02:33 UTC+2, obiwan kenobi
<[email protected]> a écrit :
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
imagesI 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.