mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 09:23:36 +08:00
06d802fd43
Signed-off-by: Simon L <szaimen@e.mail.de>
20 lines
314 B
Docker
20 lines
314 B
Docker
FROM alpine:3.17.3
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
util-linux-misc \
|
|
bash \
|
|
borgbackup \
|
|
rsync \
|
|
fuse \
|
|
py3-llfuse \
|
|
jq
|
|
|
|
VOLUME /root
|
|
|
|
COPY --chmod=770 *.sh /
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|