Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djeshkov/bareos-sd
Bareos StorageDaemon(Multitask)
https://github.com/djeshkov/bareos-sd
Last synced: 5 days ago
JSON representation
Bareos StorageDaemon(Multitask)
- Host: GitHub
- URL: https://github.com/djeshkov/bareos-sd
- Owner: djeshkov
- Created: 2016-08-19T09:58:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T10:03:02.000Z (about 8 years ago)
- Last Synced: 2024-08-02T12:50:53.627Z (3 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - djeshkov/bareos-sd - Bareos StorageDaemon(Multitask) (others)
README
# Bareos Storage Daemon
* Port: `9103`
* Config: `/etc/bareos/bareos-sd.conf`
A template gets copied if the file does not exists.```
docker run \
--rm \
--name bareos-sd \
-v /data/etc:/etc/bareos \
-v /data/storage:/storage \
-p 9103:9103 \
--hostname bareos-sd \
--link bareos-dir:bareos-dir \
djeshkov/bareos-sd
```### Adding more devices
TODO
### CIFS/SSHFS Mount
For cifs or sshfs mounts you need some more rights:
```
docker run ... --cap-add SYS_ADMIN --cap-add DAC_READ_SEARCH ...
```