infrastructure/ansible/roles/duplicati/files/docker-compose.yml

17 lines
380 B
YAML
Raw Normal View History

2020-03-08 18:12:12 +00:00
version: "2.3"
2020-02-14 21:26:15 +00:00
services:
duplicati:
image: linuxserver/duplicati:version-v2.0.5.1-2.0.5.1_beta_2020-01-18
2021-03-04 16:06:43 +00:00
hostname: "{{ ansible_hostname }}"
2020-02-14 21:26:15 +00:00
environment:
- PUID=0
- PGID=0
2021-02-10 09:12:42 +00:00
- TZ={{ TZ }}
2020-02-14 21:26:15 +00:00
volumes:
- ./config:/config
- ./restore:/restore
2020-05-25 17:01:29 +01:00
- /:/source:ro
2020-02-14 21:26:15 +00:00
restart: unless-stopped
ports:
- "{{ private_ip }}:8200:8200"