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/).
54
55
55
-
Simply pulling `ghcr.io/linuxserver/code-server` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
56
+
Simply pulling `lscr.io/linuxserver/code-server` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
56
57
57
58
The architectures supported by this image are:
58
59
@@ -97,7 +98,7 @@ Here are some example snippets to help you get started creating a container.
97
98
version: "2.1"
98
99
services:
99
100
code-server:
100
-
image: ghcr.io/linuxserver/code-server
101
+
image: lscr.io/linuxserver/code-server
101
102
container_name: code-server
102
103
environment:
103
104
- PUID=1000
@@ -131,7 +132,7 @@ docker run -d \
131
132
-p 8443:8443 \
132
133
-v /path/to/appdata/config:/config \
133
134
--restart unless-stopped \
134
-
ghcr.io/linuxserver/code-server
135
+
lscr.io/linuxserver/code-server
135
136
```
136
137
137
138
## Parameters
@@ -194,7 +195,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
194
195
* container version number
195
196
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' code-server`
196
197
* image version number
197
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/code-server`
198
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/code-server`
198
199
199
200
## Updating Info
200
201
@@ -212,7 +213,7 @@ Below are the instructions for updating containers:
212
213
213
214
### Via Docker Run
214
215
215
-
* Update the image: `docker pull ghcr.io/linuxserver/code-server`
216
+
* Update the image: `docker pull lscr.io/linuxserver/code-server`
216
217
* Stop the running container: `docker stop code-server`
217
218
* Delete the container: `docker rm code-server`
218
219
* 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 +248,7 @@ cd docker-code-server
247
248
docker build \
248
249
--no-cache \
249
250
--pull \
250
-
-t ghcr.io/linuxserver/code-server:latest .
251
+
-t lscr.io/linuxserver/code-server:latest .
251
252
```
252
253
253
254
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments