infrastructure/ansible/roles/duplicati/files/docker-compose.yml
Jake Howard 0f9802a46c
Install duplicati on PVE docker machine
Requires some changes to how private IPs are specified, which I really need to clean up at some point!
2021-01-20 21:38:01 +00:00

17 lines
383 B
YAML

version: "2.3"
services:
duplicati:
image: linuxserver/duplicati:version-v2.0.5.1-2.0.5.1_beta_2020-01-18
hostname: "{{ ansible_fqdn }}"
environment:
- PUID=0
- PGID=0
- TZ=Europe/London
volumes:
- ./config:/config
- ./restore:/restore
- /:/source:ro
restart: unless-stopped
ports:
- "{{ protected_ip }}:8200:8200"