mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2026-01-02 14:02:52 +02:00
Compare commits
33 Commits
v9.1.0-bet
...
v9.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a53b5e9ff2 | ||
|
|
c12ed1138d | ||
|
|
4924308ace | ||
|
|
04f48817a0 | ||
|
|
030ef7e7d2 | ||
|
|
f62985161f | ||
|
|
1ca205fd4f | ||
|
|
6c06893dfe | ||
|
|
955ce164b4 | ||
|
|
3cf0fc99f0 | ||
|
|
06f65eac95 | ||
|
|
3143c9f8a8 | ||
|
|
0cbfd67f5a | ||
|
|
908d242120 | ||
|
|
0aa1890b3a | ||
|
|
9f4eb7feaa | ||
|
|
7e2601b48f | ||
|
|
3ca8dcde8a | ||
|
|
28928bf381 | ||
|
|
55e5bad454 | ||
|
|
90fe13108c | ||
|
|
05b72b1cd7 | ||
|
|
1c7d5ca328 | ||
|
|
4fc3016aab | ||
|
|
d78cf70d11 | ||
|
|
94edda4a64 | ||
|
|
6c68940076 | ||
|
|
ac40e5a07a | ||
|
|
ce37c61c60 | ||
|
|
726ef79216 | ||
|
|
5d683dcbb6 | ||
|
|
e03c374df1 | ||
|
|
a37ddf14ec |
2
.github/dependencies/.admin-version
vendored
2
.github/dependencies/.admin-version
vendored
@@ -1 +1 @@
|
|||||||
6.10.1
|
6.12.0
|
||||||
|
|||||||
2
.github/dependencies/.backitup-version
vendored
2
.github/dependencies/.backitup-version
vendored
@@ -1 +1 @@
|
|||||||
2.8.1
|
2.9.8
|
||||||
|
|||||||
2
.github/dependencies/.discovery-version
vendored
2
.github/dependencies/.discovery-version
vendored
@@ -1 +1 @@
|
|||||||
3.1.0
|
4.2.0
|
||||||
|
|||||||
2
.github/dependencies/.js-controller-version
vendored
2
.github/dependencies/.js-controller-version
vendored
@@ -1 +1 @@
|
|||||||
5.0.12
|
5.0.17
|
||||||
|
|||||||
2
.github/workflows/build-debian12-beta.yml
vendored
2
.github/workflows/build-debian12-beta.yml
vendored
@@ -150,7 +150,7 @@ jobs:
|
|||||||
platforms: |
|
platforms: |
|
||||||
linux/amd64
|
linux/amd64
|
||||||
linux/arm64/v8
|
linux/arm64/v8
|
||||||
# linux/arm/v7
|
# linux/arm/v7
|
||||||
tags: |
|
tags: |
|
||||||
buanet/iobroker:beta-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
buanet/iobroker:beta-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
|
|||||||
2
.github/workflows/version-checks.yml
vendored
2
.github/workflows/version-checks.yml
vendored
@@ -49,7 +49,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Check for modified files
|
- name: Check for modified files
|
||||||
id: git-check
|
id: git-check
|
||||||
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
|
run: echo "modified=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Commit latest release version
|
- name: Commit latest release version
|
||||||
if: steps.git-check.outputs.modified == 'true'
|
if: steps.git-check.outputs.modified == 'true'
|
||||||
|
|||||||
16
CHANGELOG.md
16
CHANGELOG.md
@@ -1,12 +1,14 @@
|
|||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### v9.1.0-beta.4 (08.01.2023)
|
### v9.1.0 (19.01.2024)
|
||||||
* dropping arm/v7 support (temporary)
|
* update docs and ci
|
||||||
* add trap for debugging mode ([#421](https://github.com/buanet/ioBroker.docker/issues/421))
|
* v9.1.0-beta.4 (08.01.2024)
|
||||||
* fix ownership of userscripts ([#423 by @EugenMayer](https://github.com/buanet/ioBroker.docker/pull/423))
|
* dropping arm/v7 support (temporary)
|
||||||
* add strict mode to healthcheck.sh ([#424 by @EugenMayer](https://github.com/buanet/ioBroker.docker/pull/424))
|
* add trap for debugging mode ([#421](https://github.com/buanet/ioBroker.docker/issues/421))
|
||||||
* fixes for ci process and dockerfile
|
* fix ownership of userscripts ([#423 by @EugenMayer](https://github.com/buanet/ioBroker.docker/pull/423))
|
||||||
* remove deprecated files from repo
|
* add strict mode to healthcheck.sh ([#424 by @EugenMayer](https://github.com/buanet/ioBroker.docker/pull/424))
|
||||||
|
* fixes for ci process and dockerfile
|
||||||
|
* remove deprecated files from repo
|
||||||
* v9.1.0-beta.3 (23.11.2023)
|
* v9.1.0-beta.3 (23.11.2023)
|
||||||
* add --force to restore in maintenance script
|
* add --force to restore in maintenance script
|
||||||
* improve shebang in scripts for downgrade and portability
|
* improve shebang in scripts for downgrade and portability
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ set -euo pipefail
|
|||||||
|
|
||||||
# Script checks health of running container
|
# Script checks health of running container
|
||||||
|
|
||||||
|
# bash strict mode
|
||||||
|
set -e
|
||||||
|
|
||||||
if [ "$(cat /opt/.docker_config/.healthcheck)" == "starting" ]
|
if [ "$(cat /opt/.docker_config/.healthcheck)" == "starting" ]
|
||||||
then
|
then
|
||||||
echo "Health status: OK - Startup script is still running."
|
echo "Health status: OK - Startup script is still running."
|
||||||
|
|||||||
@@ -35,7 +35,8 @@ New major image versions (e.g. v6, v7, v8) usually include a new major version o
|
|||||||
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
||||||
|
|
||||||
### Node 18 versions
|
### Node 18 versions
|
||||||
* [`v9.0.0`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile), [`latest-v9`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile)
|
* [`v9.1.0`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile), [`latest-v9`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile)
|
||||||
|
* [`v9.0.1`](https://github.com/buanet/ioBroker.docker/blob/v9.0.1/debian12/Dockerfile)
|
||||||
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile),
|
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile),
|
||||||
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
||||||
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
||||||
|
|||||||
@@ -37,7 +37,9 @@ New major image versions (e.g. v6, v7, v8) usually include a new major version o
|
|||||||
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
||||||
|
|
||||||
### Node 18 versions
|
### Node 18 versions
|
||||||
* [`v9.0.0`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile), [`latest-v9`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile)
|
* [`v9.1.0`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile), [`latest-v9`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v9.1.0/debian12/Dockerfile)
|
||||||
|
* [`v9.0.1`](https://github.com/buanet/ioBroker.docker/blob/v9.0.1/debian12/Dockerfile)
|
||||||
|
* [`v9.0.0`](https://github.com/buanet/ioBroker.docker/blob/v9.0.0/debian12/Dockerfile)
|
||||||
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile),
|
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile),
|
||||||
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
||||||
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
||||||
|
|||||||
Reference in New Issue
Block a user