-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path_container-vars-blank
120 lines (106 loc) · 4.54 KB
/
_container-vars-blank
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
# project information
project_name: name
project_url: "https://url.com/"
project_logo: "http://www.logo.com/logo.png"
project_blurb: "[{{ project_name_short|capitalize }}]({{ project_url }}) short description goes here."
project_repo_name: "docker-{{ project_name }}"
# deprecation information
project_deprecation_status: false
project_deprecation_message: ""
project_blurb_optional_extras_enabled: false
project_blurb_optional_extras: []
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v6-latest"}
# development version
development_versions: false
development_versions_items:
- { tag: "latest", desc: "Stable Ombi releases" }
- tag: "development"
desc: "Releases from the `develop` branch of Ombi"
extra: |
<Environment>
<Variable>
<Name>SomeDevelopSpecificVar</Name>
<Value>1337</Value>
</Variable>
</Environment>
# container parameters
common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional'
param_container_name: "{{ project_name }}"
param_usage_include_hostname: false #you can set it to 'optional'
param_hostname: "hostname"
param_hostname_desc: "Set hostname for the container."
param_usage_include_mac_address: false #you can set it to 'optional'
param_mac_address: "mac_address"
param_mac_address_desc: "Set mac_address for the container."
param_usage_include_net: false #you can set it to 'optional'
param_net: "host"
param_net_desc: "Shares host networking with container."
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London.", name: "Timezone" }
# - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London.", name: "Timezone", env_options: ["Europe/Stockholm", "Europe/Brussels"] } # env_options is a optional parameter used to server options in a dropdown in unraid templating
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files.", name: "Appdata" }
param_usage_include_ports: true
param_ports:
- { external_port: "80", internal_port: "80", port_desc: "Application WebUI", name: "WebUI" }
param_device_map: false
param_devices:
- { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding", name: "QuckSync" }
cap_add_param: false
cap_add_param_vars:
- { cap_add_var: "NET_ADMIN" }
security_opt_param: false
security_opt_param_vars:
- { run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "Disabled syscall filtering" }
# optional container parameters
opt_param_usage_include_env: false
opt_param_env_vars:
- { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number.", name: "Version" }
opt_param_usage_include_vols: false
opt_param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files.", name: "Config" }
- { vol_path: "/lib/modules", vol_host_path: "/lib/modules", desc: "Volume that commonly has the same path on host aswell as in the container.", name: "Modules", default: true }
opt_param_usage_include_ports: false
opt_param_ports:
- { external_port: "80", internal_port: "80", port_desc: "Application WebUI", name: "WebUI" }
opt_param_device_map: false
opt_param_devices:
- { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding", name: "QuckSync" }
opt_cap_add_param: false
opt_cap_add_param_vars:
- { cap_add_var: "NET_ADMIN" }
opt_security_opt_param: false
opt_security_opt_param_vars:
- { run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "Disabled syscall filtering" }
# Unraid templating
# Disables the sync function on unraids side. On by default
unraid_template_sync: true
unraid_template: true
unraid_requirement: false # If not false, value is read as a string
optional_block_1: false
optional_block_1_items:
- "```"
- "include optional stuff"
- "```"
# application setup block
app_setup_block_enabled: false
app_setup_block: ""
# application setup snippets
readme_hwaccel: false
readme_keyboard: false
readme_media: false
readme_seccomp: false
external_application_snippet_enabled: false
external_application_cli_block: ""
external_application_compose_block: ""
external_application_unraid_block: ""
# changelog
changelogs:
- { date: "09.12.17:", desc: "changes description" }