apps/zrythm: Launch an independent dbus daemon
This is required for Zrythm to save its state
This commit is contained in:
parent
1e1b305ba0
commit
f3af5b9cda
1 changed files with 5 additions and 1 deletions
|
@ -48,7 +48,11 @@ RUN git clone https://aur.archlinux.org/zrythm.git && \
|
|||
|
||||
WORKDIR /home/user
|
||||
RUN sudo rm -rf /src
|
||||
# machine-id is required for dconf/gsettings
|
||||
RUN sudo dbus-uuidgen --ensure
|
||||
|
||||
LABEL net.typeblog.dobu.desktop_file_path=/usr/share/applications/org.zrythm.Zrythm.desktop
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/zrythm" ]
|
||||
# A dbus daemon is required for Zrythm
|
||||
# It does not have to share the host one though; launching any random dbus daemon would work
|
||||
ENTRYPOINT [ "/usr/bin/bash", "-c", "export $(dbus-launch) && /usr/bin/zrythm" ]
|
||||
|
|
Loading…
Reference in a new issue