Skip to content
This repository was archived by the owner on Jan 1, 2024. It is now read-only.

Commit 6e25293

Browse files
Bot Updating Templated Files
1 parent a66e9d8 commit 6e25293

File tree

3 files changed

+38
-44
lines changed

3 files changed

+38
-44
lines changed

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ body:
5353
options:
5454
- x86-64
5555
- arm64
56-
- armhf
5756
validations:
5857
required: true
5958
- type: textarea

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
5656
| :----: | :----: | ---- |
5757
| x86-64 || amd64-\<version tag\> |
5858
| arm64 || arm64v8-\<version tag\> |
59-
| armhf | | arm32v7-\<version tag\> |
59+
| armhf | | |
6060

6161
## Application Setup
6262

@@ -251,6 +251,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
251251

252252
## Versions
253253

254+
* **06.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
254255
* **20.02.23:** - Migrate to s6v3.
255256
* **15.10.22:** - Remove deprecated legacy stable branches.
256257
* **05.02.22:** - Set default webroot to /. Add env. variable for setting custom databas path.

readme-vars.yml

Lines changed: 36 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,38 @@ project_logo: "https://github.com/domoticz/domoticz/raw/master/www/images/logo.p
77
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
88
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device."
99
project_blurb_optional_extras_enabled: false
10-
1110
# supported architectures
1211
available_architectures:
13-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
14-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15-
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
16-
12+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1714
# development version
1815
development_versions: false
1916
development_versions_items:
20-
- { tag: "latest", desc: "Current latest stable." }
21-
17+
- {tag: "latest", desc: "Current latest stable."}
2218
# container parameters
2319
common_param_env_vars_enabled: true
2420
param_container_name: "{{ project_name }}"
2521
param_usage_include_net: false
2622
param_usage_include_env: true
2723
param_env_vars:
28-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
24+
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
2925
param_usage_include_vols: true
3026
param_volumes:
31-
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Where Domoticz stores config files and data." }
27+
- {vol_path: "/config", vol_host_path: "/path/to/data", desc: "Where Domoticz stores config files and data."}
3228
param_usage_include_ports: true
3329
param_ports:
34-
- { external_port: "8080", internal_port: "8080", port_desc: "WebUI" }
35-
- { external_port: "6144", internal_port: "6144", port_desc: "Domoticz communication port." }
36-
- { external_port: "1443", internal_port: "1443", port_desc: "Domoticz communication port." }
30+
- {external_port: "8080", internal_port: "8080", port_desc: "WebUI"}
31+
- {external_port: "6144", internal_port: "6144", port_desc: "Domoticz communication port."}
32+
- {external_port: "1443", internal_port: "1443", port_desc: "Domoticz communication port."}
3733
param_device_map: true
3834
param_devices:
39-
- { device_path: "path to device", device_host_path: "path to device", desc: "For passing through USB devices." }
35+
- {device_path: "path to device", device_host_path: "path to device", desc: "For passing through USB devices."}
4036
cap_add_param: false
41-
4237
# optional container parameters
4338
opt_param_usage_include_env: true
4439
opt_param_env_vars:
45-
- { env_var: "WEBROOT", env_value: "domoticz", desc: "Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying." }
46-
- { env_var: "DBASE", env_value: "<path to database>", desc: "Sets path to database. Do not set unless you know what this does." }
40+
- {env_var: "WEBROOT", env_value: "domoticz", desc: "Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying."}
41+
- {env_var: "DBASE", env_value: "<path to database>", desc: "Sets path to database. Do not set unless you know what this does."}
4742
opt_param_usage_include_vols: false
4843
opt_param_usage_include_ports: false
4944
opt_param_device_map: false
@@ -62,36 +57,35 @@ optional_block_1_items:
6257
usb 1-1.2: FTDI USB Serial Device converter now attached to ttyUSB0
6358
```
6459
As you can see above, the device node created is ttyUSB0. It does not say where, but it's almost always in /dev/. The correct tag for passing through this USB device is '--device /dev/ttyUSB0:/dev/ttyUSB0'
65-
6660
# application setup block
6761
app_setup_block_enabled: true
6862
app_setup_block: |
6963
To configure Domoticz, go to the IP of your docker host on the port you configured (default 8080), and add your hardware in Setup > Hardware.
7064
The user manual is available at [www.domoticz.com]({{ project_url }})
71-
7265
# changelog
7366
changelogs:
74-
- { date: "20.02.23:", desc: "Migrate to s6v3." }
75-
- { date: "15.10.22:", desc: "Remove deprecated legacy stable branches." }
76-
- { date: "05.02.22:", desc: "Set default webroot to /. Add env. variable for setting custom databas path." }
77-
- { date: "26.12.20:", desc: "Rebase to Ubuntu Focal, see [here](https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal) for troubleshooting armhf." }
78-
- { date: "24.11.19:", desc: "Change to using domoticz builtin Lua and MQTT." }
79-
- { date: "03.11.19:", desc: "Set capabilities for domoticz binary and move cmake from edge repo." }
80-
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10. Add iputils for ping. Fix typo in readme. Fix permissions for custom icons." }
81-
- { date: "12.05.19:", desc: "Add boost dependencies and turn off static boost build. Bump to Alpine 3.9." }
82-
- { date: "30.03.19:", desc: "Add env variable to set webroot." }
83-
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
84-
- { date: "19.02.19:", desc: "Fix branch for version logic." }
85-
- { date: "11.02.19:", desc: "Add pipeline logic and multi arch." }
86-
- { date: "02.07.18:", desc: "Add openssh package." }
87-
- { date: "01.07.18:", desc: "Fix backup/restore in webgui." }
88-
- { date: "03.04.18:", desc: "Add dependencies for BroadlinkRM2 plugin." }
89-
- { date: "20.01.18:", desc: "Move telldus core to repo to prevent build fail when source site goes down." }
90-
- { date: "18.01.18:", desc: "Remove logging to syslog in the run command to prevent double logging." }
91-
- { date: "04.01.18:", desc: "Deprecate cpu_core routine lack of scaling." }
92-
- { date: "08.12.17:", desc: "Rebase to alpine 3.7." }
93-
- { date: "26.11.17:", desc: "Use cpu core counting routine to speed up build time." }
94-
- { date: "28.05.17:", desc: "Rebase to alpine 3.6." }
95-
- { date: "26.02.17:", desc: "Add curl and replace openssl with libressl." }
96-
- { date: "11.02.17:", desc: "Update README." }
97-
- { date: "03.01.17:", desc: "Initial Release." }
67+
- {date: "06.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
68+
- {date: "20.02.23:", desc: "Migrate to s6v3."}
69+
- {date: "15.10.22:", desc: "Remove deprecated legacy stable branches."}
70+
- {date: "05.02.22:", desc: "Set default webroot to /. Add env. variable for setting custom databas path."}
71+
- {date: "26.12.20:", desc: "Rebase to Ubuntu Focal, see [here](https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal) for troubleshooting armhf."}
72+
- {date: "24.11.19:", desc: "Change to using domoticz builtin Lua and MQTT."}
73+
- {date: "03.11.19:", desc: "Set capabilities for domoticz binary and move cmake from edge repo."}
74+
- {date: "28.06.19:", desc: "Rebasing to alpine 3.10. Add iputils for ping. Fix typo in readme. Fix permissions for custom icons."}
75+
- {date: "12.05.19:", desc: "Add boost dependencies and turn off static boost build. Bump to Alpine 3.9."}
76+
- {date: "30.03.19:", desc: "Add env variable to set webroot."}
77+
- {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."}
78+
- {date: "19.02.19:", desc: "Fix branch for version logic."}
79+
- {date: "11.02.19:", desc: "Add pipeline logic and multi arch."}
80+
- {date: "02.07.18:", desc: "Add openssh package."}
81+
- {date: "01.07.18:", desc: "Fix backup/restore in webgui."}
82+
- {date: "03.04.18:", desc: "Add dependencies for BroadlinkRM2 plugin."}
83+
- {date: "20.01.18:", desc: "Move telldus core to repo to prevent build fail when source site goes down."}
84+
- {date: "18.01.18:", desc: "Remove logging to syslog in the run command to prevent double logging."}
85+
- {date: "04.01.18:", desc: "Deprecate cpu_core routine lack of scaling."}
86+
- {date: "08.12.17:", desc: "Rebase to alpine 3.7."}
87+
- {date: "26.11.17:", desc: "Use cpu core counting routine to speed up build time."}
88+
- {date: "28.05.17:", desc: "Rebase to alpine 3.6."}
89+
- {date: "26.02.17:", desc: "Add curl and replace openssl with libressl."}
90+
- {date: "11.02.17:", desc: "Update README."}
91+
- {date: "03.01.17:", desc: "Initial Release."}

0 commit comments

Comments
 (0)