32 lines
478 B
Markdown
32 lines
478 B
Markdown
## bacula machine
|
|
|
|
### Debian:
|
|
* installation: VM mit debian 12 minimalinstallation
|
|
* docker <code>curl https://get.docker.com | bash</code>
|
|
```
|
|
Paketliste:
|
|
|
|
apt install -y curl git wget
|
|
|
|
```
|
|
|
|
### Docker:
|
|
|
|
Installation:
|
|
|
|
```
|
|
Download:
|
|
curl -fsSL https://get.docker.com -o install-docker.sh
|
|
|
|
Testlauf:
|
|
$ sh install-docker.sh --dry-run
|
|
|
|
Installation:
|
|
sudo sh install-docker.sh
|
|
```
|
|
|
|
### Bacularis Standalone:
|
|
|
|
``` docker run -d -p 9097:9097 bacularis/bacularis-standalone ```
|
|
|