mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-13 18:51:26 +08:00
ab3ef06581
Signed-off-by: Simon L <szaimen@e.mail.de>
21 lines
No EOL
325 B
Docker
21 lines
No EOL
325 B
Docker
FROM alpine:3.17.1
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
bash \
|
|
borgbackup \
|
|
rsync \
|
|
fuse \
|
|
py3-llfuse \
|
|
jq
|
|
|
|
VOLUME /root
|
|
|
|
COPY start.sh /usr/bin/
|
|
COPY backupscript.sh /
|
|
RUN chmod +x /usr/bin/start.sh; \
|
|
chmod +x /backupscript.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["start.sh"] |