Skip to content

Commit

Permalink
3.0.2-1
Browse files Browse the repository at this point in the history
  • Loading branch information
mixman68 committed Aug 14, 2023
1 parent 0668cb0 commit 7fdeea9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM debian:bullseye
FROM debian:bookworm

ARG PBS_VERSION=2.4.3-1
ARG PBS_VERSION=3.0.2-1

ADD http://download.proxmox.com/debian/proxmox-release-bullseye.gpg /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
ADD http://download.proxmox.com/debian/proxmox-release-bookworm.gpg /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg

#add key and apt install etc
RUN apt-get update \
&& apt install -y ifupdown2 \
&& chmod 644 /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg && echo "deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription" > /etc/apt/sources.list.d/proxmox.list \
&& chmod 644 /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg && echo "deb http://download.proxmox.com/debian/pbs bookworm pbs-no-subscription" > /etc/apt/sources.list.d/proxmox.list \
&& mkdir -p /var/lib/dhcp/ \
&& apt-get update \
&& apt-get install -y proxmox-backup-server=${PBS_VERSION} proxmox-backup-client=${PBS_VERSION} nfs-common supervisor msmtp-mta gettext-base \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG PBS_VERSION=2.4.3-1
ARG PBS_VERSION=3.0.2-1

ADD http://download.proxmox.com/debian/proxmox-release-bullseye.gpg /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
ADD http://download.proxmox.com/debian/proxmox-release-bookworm.gpg /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg

#add key and apt install etc
RUN chmod 644 /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg && echo "deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription" > /etc/apt/sources.list.d/proxmox.list \
RUN chmod 644 /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg && echo "deb http://download.proxmox.com/debian/pbs bookworm pbs-no-subscription" > /etc/apt/sources.list.d/proxmox.list \
&& apt-get update && apt-get install -y proxmox-backup-client=${PBS_VERSION} \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

0 comments on commit 7fdeea9

Please sign in to comment.