Sign inSign up

edeckers/bareos-fd

By edeckers

Updated 12 days ago

Bareos File Daemon (FD). Image: AGPL-3.0-only. Build code: MPL-2.0.

Image
Databases & storage
1

5.9K

edeckers/bareos-fd repository overview

Bareos File Daemon

This is an unofficial Docker image for the Bareos File Daemon.

Supported Tags

Tags follow this pattern:

  • latest - Always points to the newest stable version
  • <major> (e.g., 23) - Tracks the latest patch within that major version
  • <major>.<minor>.<patch> (e.g., 23.0.3) - Pins to a specific release

See the Tags tab for all available versions.

What is Bareos File Daemon?

The Bareos File Daemon (bareos-fd) is a client component of the Bareos backup solution that runs on systems to be backed up. It communicates with the Bareos Director to receive backup and restore instructions, and with the Storage Daemon to transfer file data.

Bareos (Backup Archiving REcovery Open Sourced) is a reliable, cross-network open-source backup solution that supports Linux, Windows, and macOS systems.

Usage

Basic Usage
docker run -d \
  --name bareos-fd \
  -v /path/to/config:/etc/bareos \
  -v /:/data:ro \
  edeckers/bareos-fd
Docker Compose
version: '3'
services:
  bareos-fd:
    image: edeckers/bareos-fd
    volumes:
      - /path/to/config:/etc/bareos
      - /:/data:ro
    restart: unless-stopped

Configuration

Mount your Bareos File Daemon configuration file to /etc/bareos/bareos-fd.conf or provide the entire configuration directory at /etc/bareos.

Volumes

  • /etc/bareos - Configuration directory for the File Daemon
  • /data - Mount the filesystem you want to back up (typically the host root /)

Note: The daemon runs as the bareos user by default. For full filesystem access during backups, consider running the container with --user root.

Network

The File Daemon typically listens on port 9102 for connections from the Bareos Director. Ensure this port is accessible if running across different hosts.

Licensing

  • Docker Image: This image contains the Bareos File Daemon and is distributed under the AGPL-3.0-only license, consistent with the upstream Bareos project.
  • Build Scripts: The Dockerfile and build scripts are licensed under MPL-2.0.

Source Code

Support

For issues related to this Docker image, please open an issue on the GitHub repository.

For Bareos-specific questions, refer to the official Bareos documentation.

Tag summary

Content type

Image

Digest

sha256:718031676

Size

243.8 MB

Last updated

12 days ago

docker pull edeckers/bareos-fd