Jake Howard
0f9802a46c
Requires some changes to how private IPs are specified, which I really need to clean up at some point!
16 lines
383 B
YAML
16 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"
|