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
{{ message }}
This repository was archived by the owner on Jan 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+20-20Lines changed: 20 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,29 +46,29 @@ Find us at:
46
46
47
47
## Supported Architectures
48
48
49
-
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
49
+
We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
50
50
51
-
Simply pulling `lscr.io/linuxserver/domoticz` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
+
Simply pulling `lscr.io/linuxserver/domoticz:stable` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
52
52
53
53
The architectures supported by this image are:
54
54
55
-
| Architecture | Tag |
56
-
| :----: | --- |
57
-
| x86-64 | amd64-latest|
58
-
| arm64 | arm64v8-latest|
59
-
| armhf| arm32v7-latest|
55
+
| Architecture |Available |Tag |
56
+
| :----: |:----: | ---- |
57
+
| x86-64 |✅ |amd64-\<version tag\>|
58
+
| arm64 |✅ |arm64v8-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Version Tags
62
62
63
-
This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.
63
+
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
64
64
65
-
| Tag | Description |
66
-
| :----: | --- |
67
-
| latest | Current latest stable. |
68
-
| stable | Old stable version. Please change to latest branch for stable releases. |
69
-
| stable-4.9700 | Old stable version. Will not be updated anymore! |
70
-
| stable-3.815 | Old stable version. Will not be updated anymore! |
71
-
| stable-3.5877 | Old stable version. Will not be updated anymore! |
65
+
| Tag |Available |Description |
66
+
| :----: |:----: |--- |
67
+
| latest |✅ |Current latest stable. |
68
+
| stable |✅ |Old stable version. Please change to latest branch for stable releases. |
69
+
| stable-4.9700 |✅ |Old stable version. Will not be updated anymore! |
70
+
| stable-3.815 |✅ |Old stable version. Will not be updated anymore! |
71
+
| stable-3.5877 |✅ |Old stable version. Will not be updated anymore! |
72
72
73
73
## Application Setup
74
74
@@ -87,7 +87,7 @@ Here are some example snippets to help you get started creating a container.
87
87
version: "2.1"
88
88
services:
89
89
domoticz:
90
-
image: lscr.io/linuxserver/domoticz
90
+
image: lscr.io/linuxserver/domoticz:stable
91
91
container_name: domoticz
92
92
environment:
93
93
- PUID=1000
@@ -120,7 +120,7 @@ docker run -d \
120
120
-v <path to data>:/config \
121
121
--device <path to device>:<path to device> \
122
122
--restart unless-stopped \
123
-
lscr.io/linuxserver/domoticz
123
+
lscr.io/linuxserver/domoticz:stable
124
124
```
125
125
126
126
### Passing Through USB Devices
@@ -194,7 +194,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
194
194
* container version number
195
195
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' domoticz`
196
196
* image version number
197
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/domoticz`
197
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/domoticz:stable`
198
198
199
199
## Updating Info
200
200
@@ -212,7 +212,7 @@ Below are the instructions for updating containers:
212
212
213
213
### Via Docker Run
214
214
215
-
* Update the image: `docker pull lscr.io/linuxserver/domoticz`
215
+
* Update the image: `docker pull lscr.io/linuxserver/domoticz:stable`
216
216
* Stop the running container: `docker stop domoticz`
217
217
* Delete the container: `docker rm domoticz`
218
218
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
@@ -247,7 +247,7 @@ cd docker-domoticz
247
247
docker build \
248
248
--no-cache \
249
249
--pull \
250
-
-t lscr.io/linuxserver/domoticz:latest.
250
+
-t lscr.io/linuxserver/domoticz:stable.
251
251
```
252
252
253
253
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments