Skip to content

Commit e196366

Browse files
committed
[ci skip] Update openHAB versions in README.md
Jenkins build 5247
1 parent 22e989e commit e196366

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![Build Status](https://ci.openhab.org/job/openHAB-Docker/badge/icon)](https://ci.openhab.org/job/openHAB-Docker/)
66
[![EPL-2.0](https://img.shields.io/badge/license-EPL%202-green.svg)](https://opensource.org/licenses/EPL-2.0)
7-
[![Docker Version](https://img.shields.io/badge/version-5.1.3-blue)](https://hub.docker.com/repository/docker/openhab/openhab/tags?name=5.1.3)
7+
[![Docker Version](https://img.shields.io/badge/version-5.1.4-blue)](https://hub.docker.com/repository/docker/openhab/openhab/tags?name=5.1.4)
88
[![Docker Stars](https://img.shields.io/docker/stars/openhab/openhab.svg?cacheSeconds=2592000)](https://hub.docker.com/r/openhab/openhab/)
99
[![Docker Pulls](https://img.shields.io/docker/pulls/openhab/openhab.svg?cacheSeconds=2592000)](https://hub.docker.com/r/openhab/openhab/)
1010
[![GitHub Issues](https://img.shields.io/github/issues/openhab/openhab-docker.svg)](https://github.com/openhab/openhab-docker/issues)
@@ -69,7 +69,7 @@ The openHAB Docker images are available in the [openhab/openhab](https://hub.doc
6969
**Versions:**
7070

7171
* **Stable:** Thoroughly tested semi-annual official releases of openHAB. Use the stable version for your production environment if you do not need the latest enhancements and prefer a robust system.
72-
* `5.1.3` ([Release notes](https://github.com/openhab/openhab-distro/releases/tag/5.1.3))
72+
* `5.1.4` ([Release notes](https://github.com/openhab/openhab-distro/releases/tag/5.1.4))
7373
* `5.0.3` ([Release notes](https://github.com/openhab/openhab-distro/releases/tag/5.0.3))
7474
* **Milestone:** Intermediary releases of the next openHAB version which are released about once a month. They include recently added features and bugfixes and are a good compromise between the current stable version and the bleeding-edge and potentially unstable snapshot version.
7575
* `5.2.0.M2` ([Release notes](https://github.com/openhab/openhab-distro/releases/tag/5.2.0.M2))
@@ -85,7 +85,7 @@ The openHAB Docker images are available in the [openhab/openhab](https://hub.doc
8585
The Alpine images are substantially smaller than the Debian images but may be less compatible because OpenJDK is used (see [Prerequisites](https://www.openhab.org/docs/installation/#prerequisites) for known disadvantages).
8686
Older container images may use older versions of the Debian and Alpine base images.
8787

88-
If you are unsure about what your needs are, you probably want to use `openhab/openhab:5.1.3`.
88+
If you are unsure about what your needs are, you probably want to use `openhab/openhab:5.1.4`.
8989

9090
**Platforms:**
9191

@@ -103,7 +103,7 @@ The following Docker platforms are supported (automatically determined):
103103

104104
The following will run openHAB in demo mode on the host machine:
105105

106-
`docker run --name openhab --net=host openhab/openhab:5.1.3`
106+
`docker run --name openhab --net=host openhab/openhab:5.1.4`
107107

108108
_**NOTE:** Although this is the simplest method to getting openHAB up and running, but it is not the preferred method.
109109
To properly run the container, please specify a **host volume** for the directories._
@@ -130,7 +130,7 @@ docker run \
130130
-e "TZ=Europe/Berlin" \
131131
-d \
132132
--restart=always \
133-
openhab/openhab:5.1.3
133+
openhab/openhab:5.1.4
134134
```
135135

136136
#### Running from compose-file.yml
@@ -140,7 +140,7 @@ Create the following `docker-compose.yml` for use of local directories and start
140140
```yaml
141141
services:
142142
openhab:
143-
image: "openhab/openhab:5.1.3"
143+
image: "openhab/openhab:5.1.4"
144144
restart: always
145145
network_mode: host
146146
volumes:
@@ -159,7 +159,7 @@ Create the following `docker-compose.yml` for use of Docker volumes and start th
159159
```yml
160160
services:
161161
openhab:
162-
image: "openhab/openhab:5.1.3"
162+
image: "openhab/openhab:5.1.4"
163163
restart: always
164164
network_mode: host
165165
volumes:
@@ -191,7 +191,7 @@ Create the following `docker-compose.yml` and start the container with `docker c
191191
services:
192192
openhab:
193193
container_name: openhab
194-
image: "openhab/openhab:5.1.3"
194+
image: "openhab/openhab:5.1.4"
195195
restart: always
196196
network_mode: host
197197
cap_add:
@@ -211,7 +211,7 @@ On Windows and macOS ports should be exposed by adding port options to commands
211211
```yaml
212212
services:
213213
openhab:
214-
image: "openhab/openhab:5.1.3"
214+
image: "openhab/openhab:5.1.4"
215215
restart: always
216216
ports:
217217
- "8080:8080"
@@ -242,7 +242,7 @@ docker run \
242242
-v /opt/openhab/userdata:/openhab/userdata \
243243
-e "CRYPTO_POLICY=unlimited" \
244244
-e "TZ=Europe/Berlin" \
245-
openhab/openhab:5.1.3
245+
openhab/openhab:5.1.4
246246
```
247247

248248
### Automating Docker setup using Ansible (for advanced user)
@@ -261,7 +261,7 @@ If run elsewhere, replace it with ro.
261261
tags: openhab
262262
docker_container:
263263
name: openhab
264-
image: openhab/openhab:5.1.3
264+
image: openhab/openhab:5.1.4
265265
state: started
266266
detach: yes
267267
ports:
@@ -296,7 +296,7 @@ The default password for the login is: `habopen`
296296

297297
The container starts openHAB in server mode when no TTY is provided, example:
298298

299-
`docker run --detach --name openhab openhab/openhab:5.1.3`
299+
`docker run --detach --name openhab openhab/openhab:5.1.4`
300300

301301
When the container runs in server mode you can also add a console logger so it prints logging to stdout so you can check the logging of a container named "openhab" with:
302302

@@ -313,13 +313,13 @@ To use a console logger with openHAB 2, edit `userdata/etc/org.ops4j.pax.logging
313313

314314
When a TTY is provided openHAB is started with an interactive console, e.g.:
315315

316-
`docker run -it openhab/openhab:5.1.3`
316+
`docker run -it openhab/openhab:5.1.4`
317317

318318
#### Debug mode
319319

320320
The debug mode is started with the command:
321321

322-
`docker run -it openhab/openhab:5.1.3 ./start_debug.sh`
322+
`docker run -it openhab/openhab:5.1.4 ./start_debug.sh`
323323

324324
## Environment variables
325325

@@ -501,7 +501,7 @@ For more information on this see the [Docker documentation](https://docs.docker.
501501
Checkout the GitHub repository, change to a directory containing a Dockerfile (e.g. `/debian`) and then run these commands to build and run a Docker image for your current platform:
502502

503503
```shell
504-
$ docker build --build-arg JAVA_VERSION=21 --build-arg OPENHAB_VERSION=5.1.3 --tag openhab/openhab .
504+
$ docker build --build-arg JAVA_VERSION=21 --build-arg OPENHAB_VERSION=5.1.4 --tag openhab/openhab .
505505
$ docker run openhab/openhab
506506
```
507507

@@ -517,7 +517,7 @@ $ docker buildx create --name builder --use
517517
Change to a directory containing a Dockerfile (e.g. `/debian`) and then use the following command to build an ARM64 image:
518518

519519
```shell
520-
$ docker buildx build --build-arg JAVA_VERSION=21 --build-arg OPENHAB_VERSION=5.1.3 --platform linux/arm64 --tag openhab/openhab --load .
520+
$ docker buildx build --build-arg JAVA_VERSION=21 --build-arg OPENHAB_VERSION=5.1.4 --platform linux/arm64 --tag openhab/openhab --load .
521521
```
522522

523523
The `build` script in the root of the repository helps to simplify building the openHAB images with BuildKit.

0 commit comments

Comments
 (0)