-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathreadme-vars.yml
90 lines (82 loc) · 4.14 KB
/
readme-vars.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
# project information
project_name: duckdns
project_url: "https://duckdns.org/"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/duckdns.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
# development version
development_versions: false
development_versions_items: ""
# container parameters
common_param_env_vars_enabled: 'optional' #PGID, PUID, etc, you can set it to 'optional'
param_container_name: "{{ project_name }}"
param_usage_include_net: false #you can set it to 'optional'
param_net: ""
param_net_desc: ""
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
- { env_var: "SUBDOMAINS", env_value: "subdomain1,subdomain2", desc: "multiple subdomains allowed, comma separated, no spaces"}
- { env_var: "TOKEN", env_value: "token", desc: "DuckDNS token"}
param_usage_include_vols: false
param_volumes: ""
param_usage_include_ports: false
param_ports: ""
param_device_map: false
param_devices: ""
cap_add_param: false
cap_add_param_vars: ""
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "LOG_FILE", env_value: "false", desc: "Set to `true` to log to file (also need to map /config)."}
opt_param_usage_include_vols: true
opt_param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Used in conjunction with logging to file." }
opt_param_usage_include_ports: false
opt_param_ports: ""
opt_param_device_map: false
opt_param_devices: ""
opt_cap_add_param: false
opt_cap_add_param_vars: ""
# optional parameters
optional_block_1: false
optional_block_1_items: ""
# application setup block
app_setup_block_enabled: true
app_setup_block: |
- Go to the [duckdns website]({{project_url}}), register your subdomain(s) and retrieve your token
- Create a container with your subdomain(s) and token
- It will update your IP with the DuckDNS service every 5 minutes (with a random jitter)
# changelog
changelogs:
- { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
- { date: "02.03.23:", desc: "Rework shell scripts and cron logic." }
- { date: "13.02.23:", desc: "Rebase to alpine 3.17." }
- { date: "23.09.22:", desc: "Rebase to alpine 3.16 and s6v3." }
- { date: "19.09.22:", desc: "Rebase to alpine 3.15." }
- { date: "17.05.22:", desc: "Don't allow insecure connections and add timeout." }
- { date: "17.05.22:", desc: "Add random jitter to update time." }
- { date: "23.02.22:", desc: "Append to log file instead of overwriting every time." }
- { date: "03.05.21:", desc: "Re-adjust cron timings to prevent peak times, update code formatting." }
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
- { date: "01.06.20:", desc: "Rebasing to alpine 3.12." }
- { date: "13.04.20:", desc: "Add donation links for DuckDNS." }
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
- { date: "24.09.19:", desc: "Fix perms on github and remove chmod that can stall the container." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "08.02.19:", desc: "Update readme with optional parameters." }
- { date: "10.12.18:", desc: "Fix docker compose example." }
- { date: "15.10.18:", desc: "Multi-arch image." }
- { date: "22.08.18:", desc: "Rebase to alpine 3.8." }
- { date: "08.12.17:", desc: "Rebase to alpine 3.7." }
- { date: "28.05.17:", desc: "Rebase to alpine 3.6." }
- { date: "09.02.17:", desc: "Rebase to alpine 3.5." }
- { date: "17.11.16:", desc: "Initial release." }