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!
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
traefik_private_ip: "{{ wireguard.clients[ansible_fqdn].ip }}"
|
||||
traefik_influx_db_dir: ./influxdb
|
||||
|
||||
traefik_proxy_protocol_trusted_ips: "{{ wireguard.cidr }}"
|
||||
|
@ -19,8 +19,8 @@ services:
|
||||
volumes:
|
||||
- "{{ traefik_influx_db_dir }}:/var/lib/influxdb"
|
||||
ports:
|
||||
- "{{ traefik_private_ip }}:38089:8089/udp"
|
||||
- "{{ traefik_private_ip }}:38086:8086"
|
||||
- "{{ private_ip }}:38089:8089/udp"
|
||||
- "{{ private_ip }}:38086:8086"
|
||||
environment:
|
||||
- INFLUXDB_DB=traefik
|
||||
- INFLUXDB_HTTP_AUTH_ENABLED=
|
||||
|
@ -15,7 +15,7 @@ entryPoints:
|
||||
trustedIPs:
|
||||
- "{{ traefik_proxy_protocol_trusted_ips }}"
|
||||
traefik:
|
||||
address: "{{ traefik_private_ip }}:8080"
|
||||
address: "{{ private_ip }}:8080"
|
||||
|
||||
ping: {}
|
||||
|
||||
@ -53,7 +53,7 @@ serversTransport:
|
||||
|
||||
metrics:
|
||||
influxDB:
|
||||
address: "{{ traefik_private_ip }}:38089"
|
||||
address: "{{ private_ip }}:38089"
|
||||
database: traefik
|
||||
pushInterval: 30s
|
||||
|
||||
|
Reference in New Issue
Block a user