mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-23 07:56:57 +00:00
Initial import
This commit is contained in:
commit
2295a33590
884 changed files with 93939 additions and 0 deletions
22
Containers/borgbackup/Dockerfile
Normal file
22
Containers/borgbackup/Dockerfile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
FROM debian:bullseye
|
||||
|
||||
RUN set -ex; \
|
||||
\
|
||||
apt-get update; \
|
||||
apt-get install -y --no-install-recommends \
|
||||
borgbackup \
|
||||
rsync \
|
||||
fuse \
|
||||
python3-llfuse \
|
||||
; \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue