forked from linuxserver/docker-homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme-vars.yml
82 lines (71 loc) · 4.18 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
---
# project information
project_name: homeassistant
project_url: "https://www.home-assistant.io/"
project_logo: "https://github.com/home-assistant/home-assistant.io/raw/next/source/images/favicon-192x192-full.png"
project_blurb: |
[Home Assistant Core]({{ project_url }}) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
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"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# optional block 1
optional_block_1: true
optional_block_1_items:
- |
#### Host vs. Bridge
Home Assistant can [discover][hb0] and automatically configure
[zeroconf][hb1]/[mDNS][hb2] and [UPnP][hb3] devices on your network. In
order for this to work you must create the container with `--net=host`.
[hb0]: https://www.home-assistant.io/integrations/discovery/#mdns-and-upnp
[hb1]: https://en.wikipedia.org/wiki/Zero-configuration_networking
[hb2]: https://en.wikipedia.org/wiki/Multicast_DNS
[hb3]: https://en.wikipedia.org/wiki/Universal_Plug_and_Play
# container parameters
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Home Assistant config storage path." }
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify your TimeZone e.g. Europe/London." }
param_usage_include_ports: false
param_usage_include_net: true
param_net: "host"
param_net_desc: "Shares host networking with container. Required for some devices to be discovered by Home Assistant."
# optional container parameters
opt_param_usage_include_ports: true
opt_param_ports:
- { external_port: "8123", internal_port: "8123", port_desc: "Application WebUI, only use this if you are not using host mode." }
opt_param_device_map: true
opt_param_devices:
- { device_path: "/path/to/device", device_host_path: "/path/to/device", desc: "For passing through USB, serial or gpio devices." }
# application setup block
app_setup_block_enabled: true
app_setup_block: |
This image is based on Home Assistant Core.
The Webui can be found at `http://your-ip:8123`. Follow the wizard to set up Home Assistant.
unraid_template_sync: false
# changelog
changelogs:
- { date: "23.09.22:", desc: "Migrate to s6v3." }
- { date: "29.07.22:", desc: "Improve usb device permission fix." }
- { date: "07.07.22:", desc: "Rebase to alpine 3.16, switch to cp310 wheels." }
- { date: "07.05.22:", desc: "Build matplotlib with the same Numpy version as HA req." }
- { date: "31.03.22:", desc: "Install pycups." }
- { date: "07.03.22:", desc: "Install PySwitchbot." }
- { date: "02.03.22:", desc: "Update pip and use legacy resolver, clean up temp python files, reduce image size." }
- { date: "04.02.22:", desc: "Always compile grpcio on arm32v7 due to pypi pushing a glibc only wheel." }
- { date: "12.12.21:", desc: "Use the new `build.yaml` to determine HA base version." }
- { date: "25.09.21:", desc: "Use the new lsio homeassistant wheel repo, instead of the HA wheels." }
- { date: "13.09.21:", desc: "Build psycopg locally as the HA provided wheel does not seem to work properly." }
- { date: "13.09.21:", desc: "Fix setcap in service. Build CISO8601 locally as the HA provided wheel does not seem to work properly." }
- { date: "12.09.21:", desc: "Rebase to alpine 3.14. Build on native armhf." }
- { date: "09.08.21:", desc: "Fixed broken build caused by missing dependency." }
- { date: "01.07.21:", desc: "Remove HACS dependencies as it caused a crash in Home-assistant." }
- { date: "25.02.21:", desc: "Add python dependencies from homeassistant base image." }
- { date: "07.02.21:", desc: "Fix building from the wrong requirement file. Add ssh client & external DB libs." }
- { date: "06.02.21:", desc: "Add iputils so ping works as non root user." }
- { date: "30.01.21:", desc: "Initial Release." }