Bareos Storage Daemon (SD). Image: AGPL-3.0-only. Build code: MPL-2.0.
5.6K
This is an unofficial Docker image for the Bareos Storage 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 Storage Daemon (bareos-sd) is the component of the Bareos backup solution responsible for reading and writing backup data to storage media. It receives data from File Daemons during backups and sends data back during restores, managing the physical storage of backup archives.
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-sd \
-v /path/to/config:/etc/bareos \
-v /path/to/storage:/var/lib/bareos/storage \
edeckers/bareos-sd
version: '3'
services:
bareos-sd:
image: edeckers/bareos-sd
volumes:
- /path/to/config:/etc/bareos
- /path/to/storage:/var/lib/bareos/storage
restart: unless-stopped
Mount your Bareos Storage Daemon configuration file to /etc/bareos/bareos-sd.conf or provide the entire configuration directory at /etc/bareos.
/etc/bareos - Configuration directory for the Storage Daemon/var/lib/bareos/storage - Storage location for backup archivesNote: The daemon runs as the bareos user by default. Ensure the storage volume has appropriate permissions for the bareos user to read and write backup data.
The Storage Daemon typically listens on port 9103 for connections from the Bareos Director and File Daemons. 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:3e11079a8…
Size
247.5 MB
Last updated
12 days ago
docker pull edeckers/bareos-sd