infrastructure/ansible/roles/duplicati/files/docker-compose.yml
Jake Howard 986fc50fde
Set hostname for duplicati so it's picked up correctly in the UI
This shouldn't have any negative impact. Hopefully...
2020-05-25 17:32:44 +01:00

17 lines
427 B
YAML

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