Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN URL=https://hndl.urbackup.org/Server/${VERSION} && \
&& echo "deb $dry\ndeb-src $dry" >/etc/apt/sources.list.d/${DEBIAN}-backports.list \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get libguestfs-tools \

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

install missing. Maybe the package just had to be added inside the line below.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You right install should be added, maybe
@uroni know better how to add it..

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Commifreak I'm made xml template for Unraid for this container, but founded some stuff like image mounting not enabled by default...

&& apt-get install -y wget \
&& wget -q "$URL" -O /root/urbackup-server.deb \
&& apt-get remove -y wget \
Expand All @@ -42,7 +43,7 @@ EXPOSE 55414
EXPOSE 55415
EXPOSE 35623/udp

# /usr/share/urbackup will not be exported to a volume by default, but it still can be bind mounted
VOLUME [ "/var/urbackup", "/var/log", "/backups" ]
# /usr/share/urbackup will not be exported to a volume by default, but it still can be bind mounted.
VOLUME [ "/var/urbackup", "/var/log", "/backups", "/etc/default" ]
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
CMD ["run"]