1
0
mirror of https://github.com/joBr99/proxmoxbackupserver synced 2026-08-06 00:12:37 +02:00
Files
proxmoxbackupserver/Dockerfile
T
Johannes 55ea218a5f Removed empty continuation lines
Remove empty continuation lines to avoid errors in a future release
2020-11-13 22:05:56 +01:00

21 lines
642 B
Docker

FROM debian:buster
#Install dependencies, add proxmox repo and install packages
RUN apt-get update && \
apt-get install -y \
wget \
ca-certificates \
&& rm -rf /var/lib/apt/lists/* && \
echo "deb http://download.proxmox.com/debian/pbs buster pbstest" > /etc/apt/sources.list.d/pbstest-beta.list && \
wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg && \
apt-get update && \
apt-get install -y proxmox-backup-server=0.9.6-1
#Activate backup user
RUN chsh -s /bin/bash backup
#Start...
COPY entrypoint.sh /
RUN chmod a+x /entrypoint.sh
STOPSIGNAL SIGINT