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.
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/).
48
49
49
-
Simply pulling `ghcr.io/linuxserver/domoticz` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/domoticz` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
51
51
52
The architectures supported by this image are:
52
53
@@ -85,7 +86,7 @@ Here are some example snippets to help you get started creating a container.
85
86
version: "2.1"
86
87
services:
87
88
domoticz:
88
-
image: ghcr.io/linuxserver/domoticz
89
+
image: lscr.io/linuxserver/domoticz
89
90
container_name: domoticz
90
91
environment:
91
92
- PUID=1000
@@ -118,7 +119,7 @@ docker run -d \
118
119
-v <path to data>:/config \
119
120
--device <path to device>:<path to device> \
120
121
--restart unless-stopped \
121
-
ghcr.io/linuxserver/domoticz
122
+
lscr.io/linuxserver/domoticz
122
123
```
123
124
124
125
### Passing Through USB Devices
@@ -192,7 +193,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
192
193
* container version number
193
194
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' domoticz`
194
195
* image version number
195
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/domoticz`
196
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/domoticz`
196
197
197
198
## Updating Info
198
199
@@ -210,7 +211,7 @@ Below are the instructions for updating containers:
210
211
211
212
### Via Docker Run
212
213
213
-
* Update the image: `docker pull ghcr.io/linuxserver/domoticz`
214
+
* Update the image: `docker pull lscr.io/linuxserver/domoticz`
214
215
* Stop the running container: `docker stop domoticz`
215
216
* Delete the container: `docker rm domoticz`
216
217
* 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)
@@ -245,7 +246,7 @@ cd docker-domoticz
245
246
docker build \
246
247
--no-cache \
247
248
--pull \
248
-
-t ghcr.io/linuxserver/domoticz:latest .
249
+
-t lscr.io/linuxserver/domoticz:latest .
249
250
```
250
251
251
252
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments