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
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/plex` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/plex` 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
@@ -111,7 +112,7 @@ Here are some example snippets to help you get started creating a container.
111
112
version: "2.1"
112
113
services:
113
114
plex:
114
-
image: ghcr.io/linuxserver/plex
115
+
image: lscr.io/linuxserver/plex
115
116
container_name: plex
116
117
network_mode: host
117
118
environment:
@@ -140,7 +141,7 @@ docker run -d \
140
141
-v /path/to/tvseries:/tv \
141
142
-v /path/to/movies:/movies \
142
143
--restart unless-stopped \
143
-
ghcr.io/linuxserver/plex
144
+
lscr.io/linuxserver/plex
144
145
```
145
146
146
147
## Parameters
@@ -229,7 +230,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
229
230
* container version number
230
231
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' plex`
231
232
* image version number
232
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/plex`
233
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/plex`
233
234
234
235
## Updating Info
235
236
@@ -247,7 +248,7 @@ Below are the instructions for updating containers:
247
248
248
249
### Via Docker Run
249
250
250
-
* Update the image: `docker pull ghcr.io/linuxserver/plex`
251
+
* Update the image: `docker pull lscr.io/linuxserver/plex`
251
252
* Stop the running container: `docker stop plex`
252
253
* Delete the container: `docker rm plex`
253
254
* 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)
@@ -282,7 +283,7 @@ cd docker-plex
282
283
docker build \
283
284
--no-cache \
284
285
--pull \
285
-
-t ghcr.io/linuxserver/plex:latest .
286
+
-t lscr.io/linuxserver/plex:latest .
286
287
```
287
288
288
289
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments