ich versuche gerade einen Docker-Container für FreeFileSync zu erstellen. Der Container crasht aber immer direkt nach dem Start.
https://github.com/jlesage/docker-freefilesync
Code
docker run -d --name=FreeFileSync
-p 5804:5800
-e USER_ID=1026
-e GROUP_ID=100
-e LANG=de_DE.UTF-8
-e TZ=Europe/Berlin
-v /volume1/docker/freefilesync:/config:rw
-v /volume1:/storage:rw
jlesage/freefilesync
Log
Code
[supervisor ] loading service 'crond'...
[supervisor ] service 'crond' is disabled.
[supervisor ] all services loaded.
[supervisor ] starting services...
[supervisor ] starting service 'xvnc'...
[xvnc ] Xvnc TigerVNC 1.13.1 - built May 16 2023 18:07:02
[xvnc ] Copyright (C) 1999-2022 TigerVNC Team and many others (see README.rst)
[xvnc ] See https://www.tigervnc.org for information on TigerVNC.
[xvnc ] Underlying X server release 12014000
[xvnc ] Thu Aug 17 21:26:19 2023
[xvnc ] vncext: VNC extension running!
[xvnc ] vncext: Listening for VNC connections on /tmp/vnc.sock (mode 0660)
[xvnc ] vncext: Listening for VNC connections on all interface(s), port 5900
[xvnc ] vncext: created VNC server for screen 0
[supervisor ] starting service 'nginx'...
[nginx ] Listening for HTTP connections on port 5800.
[supervisor ] starting service 'openbox'...
[supervisor ] starting service 'app'...
[supervisor ] all services started.
[app ] terminate called after throwing an instance of 'std::runtime_error'
[app ] what(): ../../zen/guid.h[31] Failed to generate GUID.
[app ] ENOSYS: Function not implemented [getentropy]
[supervisor ] service 'app' exited (got signal SIGABRT).
[supervisor ] service 'app' exited, shutting down...
[supervisor ] stopping service 'openbox'...
[supervisor ] service 'openbox' exited (with status 0).
[supervisor ] stopping service 'nginx'...
[supervisor ] service 'nginx' exited (with status 0).
[supervisor ] stopping service 'xvnc'...
[xvnc ] Thu Aug 17 21:26:24 2023
[xvnc ] ComparingUpdateTracker: 0 pixels in / 0 pixels out
[xvnc ] ComparingUpdateTracker: (1:-nan ratio)
[supervisor ] service 'xvnc' exited (with status 0).
[finish ] executing container finish scripts...
[finish ] all container finish scripts executed.
Alles anzeigen
Hat irgendjemand eine Idee was das Problem sein könnte?