Block a user
upback (0.1)
Installation
docker pull git.fet.at/helmi/upback:0.1sha256:935d520d0db701392121fb8d8692b8a0d62103301d4a79852d6b99663589a9f3
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1763337600' |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y wget gnupg ca-certificates lsb-release && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c echo "deb http://download.proxmox.com/debian/pbs-client bookworm main" > /etc/apt/sources.list.d/pbs.list # buildkit |
| RUN /bin/sh -c wget -qO /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg http://download.proxmox.com/debian/proxmox-release-bookworm.gpg # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y proxmox-backup-client && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app |
| COPY ./app/* . # buildkit |
| RUN /bin/sh -c chmod +x ./backup.sh # buildkit |
| CMD ["/bin/sh" "-c" "./backup.sh"] |