Files
hassio-addons/PBS/Dockerfile

16 lines
562 B
Docker

FROM debian
ENV LANG C.UTF-8
# Copy data for add-on
COPY run.sh /
RUN apt update
RUN apt install -y ca-certificates wget
#RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O- | apt-key add -
RUN echo deb http://download.proxmox.com/debian/pbs-client bookworm main > /etc/apt/sources.list.d/pbs-client.list
RUN apt update
RUN apt install -y proxmox-backup-client
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]