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 May 25, 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/endlessh` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/endlessh` 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
@@ -71,7 +72,7 @@ Here are some example snippets to help you get started creating a container.
71
72
version: "2.1"
72
73
services:
73
74
endlessh:
74
-
image: ghcr.io/linuxserver/endlessh
75
+
image: lscr.io/linuxserver/endlessh
75
76
container_name: endlessh
76
77
environment:
77
78
- PUID=1000
@@ -105,7 +106,7 @@ docker run -d \
105
106
-p 22:2222 \
106
107
-v /path/to/appdata:/config `#optional` \
107
108
--restart unless-stopped \
108
-
ghcr.io/linuxserver/endlessh
109
+
lscr.io/linuxserver/endlessh
109
110
```
110
111
111
112
## Parameters
@@ -168,7 +169,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
168
169
* container version number
169
170
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' endlessh`
170
171
* image version number
171
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/endlessh`
172
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/endlessh`
172
173
173
174
## Updating Info
174
175
@@ -186,7 +187,7 @@ Below are the instructions for updating containers:
186
187
187
188
### Via Docker Run
188
189
189
-
* Update the image: `docker pull ghcr.io/linuxserver/endlessh`
190
+
* Update the image: `docker pull lscr.io/linuxserver/endlessh`
190
191
* Stop the running container: `docker stop endlessh`
191
192
* Delete the container: `docker rm endlessh`
192
193
* 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)
@@ -221,7 +222,7 @@ cd docker-endlessh
221
222
docker build \
222
223
--no-cache \
223
224
--pull \
224
-
-t ghcr.io/linuxserver/endlessh:latest .
225
+
-t lscr.io/linuxserver/endlessh:latest .
225
226
```
226
227
227
228
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments