You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -69,7 +69,7 @@ The openHAB Docker images are available in the [openhab/openhab](https://hub.doc
69
69
**Versions:**
70
70
71
71
***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.
***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.
@@ -85,7 +85,7 @@ The openHAB Docker images are available in the [openhab/openhab](https://hub.doc
85
85
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).
86
86
Older container images may use older versions of the Debian and Alpine base images.
87
87
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`.
89
89
90
90
**Platforms:**
91
91
@@ -103,7 +103,7 @@ The following Docker platforms are supported (automatically determined):
103
103
104
104
The following will run openHAB in demo mode on the host machine:
105
105
106
-
`docker run --name openhab --net=host openhab/openhab:5.1.3`
106
+
`docker run --name openhab --net=host openhab/openhab:5.1.4`
107
107
108
108
_**NOTE:** Although this is the simplest method to getting openHAB up and running, but it is not the preferred method.
109
109
To properly run the container, please specify a **host volume** for the directories._
@@ -130,7 +130,7 @@ docker run \
130
130
-e "TZ=Europe/Berlin" \
131
131
-d \
132
132
--restart=always \
133
-
openhab/openhab:5.1.3
133
+
openhab/openhab:5.1.4
134
134
```
135
135
136
136
#### Running from compose-file.yml
@@ -140,7 +140,7 @@ Create the following `docker-compose.yml` for use of local directories and start
140
140
```yaml
141
141
services:
142
142
openhab:
143
-
image: "openhab/openhab:5.1.3"
143
+
image: "openhab/openhab:5.1.4"
144
144
restart: always
145
145
network_mode: host
146
146
volumes:
@@ -159,7 +159,7 @@ Create the following `docker-compose.yml` for use of Docker volumes and start th
159
159
```yml
160
160
services:
161
161
openhab:
162
-
image: "openhab/openhab:5.1.3"
162
+
image: "openhab/openhab:5.1.4"
163
163
restart: always
164
164
network_mode: host
165
165
volumes:
@@ -191,7 +191,7 @@ Create the following `docker-compose.yml` and start the container with `docker c
191
191
services:
192
192
openhab:
193
193
container_name: openhab
194
-
image: "openhab/openhab:5.1.3"
194
+
image: "openhab/openhab:5.1.4"
195
195
restart: always
196
196
network_mode: host
197
197
cap_add:
@@ -211,7 +211,7 @@ On Windows and macOS ports should be exposed by adding port options to commands
211
211
```yaml
212
212
services:
213
213
openhab:
214
-
image: "openhab/openhab:5.1.3"
214
+
image: "openhab/openhab:5.1.4"
215
215
restart: always
216
216
ports:
217
217
- "8080:8080"
@@ -242,7 +242,7 @@ docker run \
242
242
-v /opt/openhab/userdata:/openhab/userdata \
243
243
-e "CRYPTO_POLICY=unlimited" \
244
244
-e "TZ=Europe/Berlin" \
245
-
openhab/openhab:5.1.3
245
+
openhab/openhab:5.1.4
246
246
```
247
247
248
248
### Automating Docker setup using Ansible (for advanced user)
@@ -261,7 +261,7 @@ If run elsewhere, replace it with ro.
261
261
tags: openhab
262
262
docker_container:
263
263
name: openhab
264
-
image: openhab/openhab:5.1.3
264
+
image: openhab/openhab:5.1.4
265
265
state: started
266
266
detach: yes
267
267
ports:
@@ -296,7 +296,7 @@ The default password for the login is: `habopen`
296
296
297
297
The container starts openHAB in server mode when no TTY is provided, example:
298
298
299
-
`docker run --detach --name openhab openhab/openhab:5.1.3`
299
+
`docker run --detach --name openhab openhab/openhab:5.1.4`
300
300
301
301
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:
302
302
@@ -313,13 +313,13 @@ To use a console logger with openHAB 2, edit `userdata/etc/org.ops4j.pax.logging
313
313
314
314
When a TTY is provided openHAB is started with an interactive console, e.g.:
315
315
316
-
`docker run -it openhab/openhab:5.1.3`
316
+
`docker run -it openhab/openhab:5.1.4`
317
317
318
318
#### Debug mode
319
319
320
320
The debug mode is started with the command:
321
321
322
-
`docker run -it openhab/openhab:5.1.3 ./start_debug.sh`
322
+
`docker run -it openhab/openhab:5.1.4 ./start_debug.sh`
323
323
324
324
## Environment variables
325
325
@@ -501,7 +501,7 @@ For more information on this see the [Docker documentation](https://docs.docker.
501
501
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:
0 commit comments