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