Skip to content

Commit

Permalink
Merge pull request #35 from fametec/11.0.5
Browse files Browse the repository at this point in the history
11.0.5
  • Loading branch information
eduardofraga authored Aug 4, 2021
2 parents becbceb + ed9c153 commit 3b3dbb8
Show file tree
Hide file tree
Showing 45 changed files with 37 additions and 1,566 deletions.
24 changes: 11 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Bacula 11.0.2 Container
# Bacula 11.0.5 Container

Deploy the bacula community edition on Docker Containers.

## Images

- [ ] Bacula Standalone fametec/bacula-standalone:11.0.2 (DEPRECATED)
- [x] Bacula Catalog fametec/bacula-catalog:11.0.2
- [x] Bacula Director fametec/bacula-director:11.0.2
- [x] Bacula Storage Daemon fametec/bacula-storage:11.0.2
- [x] Bacula File Daemon fametec/bacula-client:11.0.2
- [ ] Baculum Web Gui fametec/baculum:11.0.2 (DEPRECATED)
- [x] Baculum Web Gui fametec/baculum-web:11.0.2 (NEW)
- [x] Baculum API fametec/baculum-api:11.0.2 (NEW)
- [x] Bacula Catalog fametec/bacula-catalog:11.0.5
- [x] Bacula Director fametec/bacula-director:11.0.5
- [x] Bacula Storage Daemon fametec/bacula-storage:11.0.5
- [x] Bacula File Daemon fametec/bacula-client:11.0.5
- [x] Baculum Web Gui fametec/baculum-web:11.0.5 (NEW)
- [x] Baculum API fametec/baculum-api:11.0.5 (NEW)
- [x] Postfix SMTP Relay fametec/postfix:latest
- [x] SMTP2TG SMTP Relay to Telegram b3vis/docker-smtp2tg

Expand Down Expand Up @@ -50,7 +48,7 @@ docker-compose.yaml
version: '3.1'
services:
db:
image: fametec/bacula-catalog:11.0.2
image: fametec/bacula-catalog:11.0.5
restart: unless-stopped
environment:
POSTGRES_PASSWORD: bacula
Expand All @@ -61,7 +59,7 @@ docker-compose.yaml
ports:
- 5432
bacula-dir:
image: fametec/bacula-director:11.0.2
image: fametec/bacula-director:11.0.5
restart: unless-stopped
volumes:
- ./etc/bacula-dir.conf:/opt/bacula/etc/bacula-dir.conf:ro
Expand All @@ -71,7 +69,7 @@ docker-compose.yaml
ports:
- 9101
bacula-sd:
image: fametec/bacula-storage:11.0.2
image: fametec/bacula-storage:11.0.5
restart: unless-stopped
depends_on:
- bacula-dir
Expand All @@ -81,7 +79,7 @@ docker-compose.yaml
ports:
- 9103
bacula-fd:
image: fametec/bacula-client:11.0.2
image: fametec/bacula-client:11.0.5
restart: unless-stopped
depends_on:
- bacula-sd
Expand Down
2 changes: 1 addition & 1 deletion docker/bacula-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM centos:7

MAINTAINER Eduardo Fraga <[email protected]>

ENV BACULA_VERSION 11.0.2
ENV BACULA_VERSION 11.0.5

# get your key on: https://www.bacula.org/bacula-binary-package-download/
ENV BACULA_KEY 5cee4d079821e
Expand Down
2 changes: 1 addition & 1 deletion docker/bacula-base/bacula-community.repo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Bacula-Community]
name=CentOS - Bacula - Community
baseurl=https://www.bacula.org/packages/BACULA_KEY/rpms/BACULA_VERSION/el7/x86_64/
baseurl=https://www.bacula.org/packages/BACULA_KEY/rpms/BACULA_VERSION/el7/
enabled=1
protect=0
gpgcheck=0
2 changes: 1 addition & 1 deletion docker/bacula-catalog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2 AS base
FROM fametec/bacula-base:11.0.5 AS base

FROM postgres:10

Expand Down
2 changes: 1 addition & 1 deletion docker/bacula-dir/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2
FROM fametec/bacula-base:11.0.5

MAINTAINER [email protected]

Expand Down
2 changes: 1 addition & 1 deletion docker/bacula-fd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2
FROM fametec/bacula-base:11.0.5

VOLUME ["/opt/bacula/etc"]

Expand Down
2 changes: 1 addition & 1 deletion docker/bacula-sd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2
FROM fametec/bacula-base:11.0.5

RUN yum install -y bacula-cloud-storage --exclude=bacula-mysql

Expand Down
53 changes: 0 additions & 53 deletions docker/bacula-standalone/Dockerfile

This file was deleted.

34 changes: 0 additions & 34 deletions docker/bacula-standalone/confs/Config-api-apache/api.conf

This file was deleted.

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions docker/bacula-standalone/confs/Config-web-apache/hosts.conf

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions docker/bacula-standalone/confs/baculum.repo

This file was deleted.

16 changes: 0 additions & 16 deletions docker/bacula-standalone/confs/sudoers-baculum

This file was deleted.

48 changes: 0 additions & 48 deletions docker/bacula-standalone/confs/supervisord.conf

This file was deleted.

2 changes: 0 additions & 2 deletions docker/bacula-standalone/confs/timezone.ini

This file was deleted.

2 changes: 1 addition & 1 deletion docker/baculum-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2
FROM fametec/bacula-base:11.0.5

MAINTAINER [email protected]

Expand Down
2 changes: 1 addition & 1 deletion docker/baculum-web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fametec/bacula-base:11.0.2
FROM fametec/bacula-base:11.0.5

MAINTAINER [email protected]

Expand Down
35 changes: 0 additions & 35 deletions docker/docker-compose-standalone-build.yml

This file was deleted.

33 changes: 0 additions & 33 deletions docker/docker-compose-standalone.yaml

This file was deleted.

Loading

0 comments on commit 3b3dbb8

Please sign in to comment.