-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathddclient.yml
More file actions
41 lines (38 loc) · 846 Bytes
/
ddclient.yml
File metadata and controls
41 lines (38 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
version: '3.8'
services:
ddclient:
image: ghcr.io/torresmvl/ddclient:latest
command: --foreground --syslog --verbose --file /run/secrets/ddclient.conf
networks:
- private
volumes:
- cache:/var/cache/ddclient:rw
secrets:
- ddclient.conf
healthcheck:
test: ['CMD', 'curl', 'https://yourdomain.tld']
timeout: 30s
interval: 10s
retries: 5
deploy:
mode: replicated
replicas: 1
placement:
constraints: [node.role == manager]
resources:
limits:
memory: 128M
reservations:
memory: 64M
secrets:
ddclient.conf:
file: ./config/ddclient.conf
networks:
private:
driver: overlay
attachable: false
driver_opts:
encrypted: 'true'
volumes:
cache: