Files
proxmox/pbs-client/docker/Dockerfile
Márcio Fernandes c29db12485
All checks were successful
/ build-image (push) Successful in 16s
renamed pbsclient to pbs-client folder and docker image
2026-03-15 08:38:02 +00:00

13 lines
523 B
Docker

FROM debian:bookworm-slim
RUN apt-get update
RUN apt install -y wget
RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
RUN echo "deb http://download.proxmox.com/debian/pbs-client bookworm main" > /etc/apt/sources.list.d/pbs.list
RUN apt update
RUN apt install -y proxmox-backup-client
COPY ./docker/scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]