25 lines
651 B
YAML
25 lines
651 B
YAML
version: '3.3'
|
|
services:
|
|
node-exporter:
|
|
container_name: node-exporter
|
|
network_mode: host
|
|
pid: host
|
|
volumes:
|
|
- '/:/host:ro,rslave'
|
|
image: 'quay.io/prometheus/node-exporter:latest'
|
|
restart: unless-stopped
|
|
duplicati:
|
|
image: lscr.io/linuxserver/duplicati:latest
|
|
container_name: duplicati
|
|
environment:
|
|
- PUID=998
|
|
- PGID=100
|
|
- TZ=Europe/Stockholm
|
|
volumes:
|
|
- ./config:/config
|
|
- /home/bobban/backups:/backups
|
|
- /home/bobban/docker:/source
|
|
ports:
|
|
- 8200:8200
|
|
restart: unless-stopped
|
|
hostname: "Hostname-backup" |