mirror of
https://github.com/eftechcombr/bacula.git
synced 2025-10-11 03:36:19 +00:00
Build 13.0.3
This commit is contained in:
21
docker/bacula-base/Dockerfile
Normal file
21
docker/bacula-base/Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM debian:11
|
||||
|
||||
ENV BACULA_VERSION 13.0.3
|
||||
|
||||
ENV DISTRO bullseye
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
# get your key on: https://www.bacula.org/bacula-binary-package-download/
|
||||
ENV BACULA_KEY 5cee4d079821e
|
||||
|
||||
ENV EMAIL suporte@eftech.com.br
|
||||
|
||||
RUN apt update && \
|
||||
apt -y install gnupg2 curl && \
|
||||
curl https://bacula.org/downloads/Bacula-4096-Distribution-Verification-key.asc | apt-key add - && \
|
||||
echo "deb https://www.bacula.org/packages/${BACULA_KEY}/debs/${BACULA_VERSION} ${DISTRO} main" > /etc/apt/sources.list.d/bacula-community.list && \
|
||||
apt update && \
|
||||
apt -y install dbconfig-pgsql bacula-postgresql
|
||||
|
||||
RUN for i in `ls /opt/bacula/bin`; do if test -z /usr/sbin/$i; then ln -s /opt/bacula/bin/$i /usr/sbin/$i; fi; done
|
6
docker/bacula-base/bacula-community.repo
Normal file
6
docker/bacula-base/bacula-community.repo
Normal file
@@ -0,0 +1,6 @@
|
||||
[Bacula-Community]
|
||||
name=CentOS - Bacula - Community
|
||||
baseurl=https://www.bacula.org/packages/BACULA_KEY/rpms/BACULA_VERSION/el7/
|
||||
enabled=1
|
||||
protect=0
|
||||
gpgcheck=0
|
Reference in New Issue
Block a user