2023-08-23 07:33:42 -03:00
|
|
|
services:
|
|
|
|
|
|
|
|
db:
|
2024-05-30 11:30:17 -03:00
|
|
|
image: eftechcombr/bacula:15.0.2-catalog
|
2023-08-23 07:33:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: bacula
|
|
|
|
POSTGRES_USER: bacula
|
|
|
|
POSTGRES_DB: bacula
|
|
|
|
# volumes:
|
|
|
|
# - pgdata:/var/lib/postgresql/data:rw
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
#
|
|
|
|
bacula-dir:
|
2024-05-30 11:30:17 -03:00
|
|
|
image: eftechcombr/bacula:15.0.2-director
|
2023-08-23 07:33:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./etc:/opt/bacula/etc:ro
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
ports:
|
|
|
|
- 9101:9101
|
|
|
|
#
|
|
|
|
bacula-sd:
|
2024-05-30 11:30:17 -03:00
|
|
|
image: eftechcombr/bacula:15.0.2-storage
|
2023-08-23 07:33:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
depends_on:
|
|
|
|
- bacula-dir
|
|
|
|
- db
|
|
|
|
volumes:
|
|
|
|
- ./etc:/opt/bacula/etc:ro
|
|
|
|
ports:
|
|
|
|
- 9103:9103
|
|
|
|
#
|
|
|
|
bacula-fd:
|
2024-05-30 11:30:17 -03:00
|
|
|
image: eftechcombr/bacula:15.0.2-client
|
2023-08-23 07:33:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
depends_on:
|
|
|
|
- bacula-sd
|
|
|
|
- bacula-dir
|
|
|
|
- db
|
|
|
|
volumes:
|
|
|
|
- ./etc:/opt/bacula/etc:ro
|
|
|
|
ports:
|
|
|
|
- 9102:9102
|
|
|
|
|
2023-08-23 07:54:42 -03:00
|
|
|
baculum-api:
|
2024-11-27 16:39:29 -03:00
|
|
|
image: eftechcombr/baculum:15.0.2-api
|
2023-08-23 07:54:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- bacula-dir
|
|
|
|
volumes:
|
|
|
|
- ./etc/bconsole.conf:/opt/bacula/etc/bconsole.conf:ro
|
|
|
|
- ./etc/baculum:/etc/baculum:rw
|
|
|
|
ports:
|
|
|
|
- 9096:9096
|
|
|
|
|
|
|
|
#
|
|
|
|
baculum-web:
|
2024-11-27 16:39:29 -03:00
|
|
|
image: eftechcombr/baculum:15.0.2-web
|
2023-08-23 07:54:42 -03:00
|
|
|
restart: unless-stopped
|
|
|
|
depends_on:
|
|
|
|
- baculum-api
|
|
|
|
volumes:
|
|
|
|
- ./etc/bconsole.conf:/opt/bacula/etc/bconsole.conf:ro
|
|
|
|
- ./etc/baculum:/etc/baculum:rw
|
|
|
|
ports:
|
|
|
|
- 9095:9095
|
2023-08-23 07:33:42 -03:00
|
|
|
|
|
|
|
#
|
|
|
|
#volumes:
|
|
|
|
# pgdata:
|
|
|
|
#
|
|
|
|
# gmail:
|
|
|
|
# image: eftechcombr/postfix:gmail
|
|
|
|
# restart: unless-stopped
|
|
|
|
# depends_on:
|
|
|
|
# - bacula-dir
|
|
|
|
# # ports:
|
|
|
|
# # - 30025:25
|
|
|
|
# environment:
|
|
|
|
# GMAIL_USER: xxxxxxxx
|
|
|
|
# GMAIL_PASS: xxxxxxxx
|
|
|
|
#
|
|
|
|
# smtp2tg:
|
|
|
|
# image: b3vis/docker-smtp2tg
|
|
|
|
# restart: unless-stopped
|
|
|
|
# volumes:
|
|
|
|
# - ./etc/smtp2tg.toml:/config/smtp2tg.toml:ro
|
|
|
|
# # ports:
|
|
|
|
# # - "31025:25"
|
|
|
|
# depends_on:
|
|
|
|
# - bacula-dir
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#volumes:
|
|
|
|
# pgdata:
|