Bareos File Daemon (FD). Image: AGPL-3.0-only. Build code: MPL-2.0.
5.9K
This is an unofficial Docker image for the Bareos File Daemon.
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 releaseSee the Tags tab for all available versions.
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.
docker run -d \
--name bareos-fd \
-v /path/to/config:/etc/bareos \
-v /:/data:ro \
edeckers/bareos-fd
version: '3'
services:
bareos-fd:
image: edeckers/bareos-fd
volumes:
- /path/to/config:/etc/bareos
- /:/data:ro
restart: unless-stopped
Mount your Bareos File Daemon configuration file to /etc/bareos/bareos-fd.conf or provide the entire configuration directory at /etc/bareos.
/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.
The File Daemon typically listens on port 9102 for connections from the Bareos Director. Ensure this port is accessible if running across different hosts.
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.
Content type
Image
Digest
sha256:718031676…
Size
243.8 MB
Last updated
12 days ago
docker pull edeckers/bareos-fd