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/ldap-auth` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/ldap-auth` 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
@@ -74,7 +75,7 @@ Here are some example snippets to help you get started creating a container.
74
75
version: "2.1"
75
76
services:
76
77
ldap-auth:
77
-
image: ghcr.io/linuxserver/ldap-auth
78
+
image: lscr.io/linuxserver/ldap-auth
78
79
container_name: ldap-auth
79
80
environment:
80
81
- TZ=Europe/London
@@ -99,7 +100,7 @@ docker run -d \
99
100
-p 8888:8888 \
100
101
-p 9000:9000 \
101
102
--restart unless-stopped \
102
-
ghcr.io/linuxserver/ldap-auth
103
+
lscr.io/linuxserver/ldap-auth
103
104
```
104
105
105
106
## Parameters
@@ -145,7 +146,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
145
146
* container version number
146
147
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ldap-auth`
147
148
* image version number
148
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/ldap-auth`
149
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/ldap-auth`
149
150
150
151
## Updating Info
151
152
@@ -163,7 +164,7 @@ Below are the instructions for updating containers:
163
164
164
165
### Via Docker Run
165
166
166
-
* Update the image: `docker pull ghcr.io/linuxserver/ldap-auth`
167
+
* Update the image: `docker pull lscr.io/linuxserver/ldap-auth`
167
168
* Stop the running container: `docker stop ldap-auth`
168
169
* Delete the container: `docker rm ldap-auth`
169
170
* 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)
@@ -198,7 +199,7 @@ cd docker-ldap-auth
198
199
docker build \
199
200
--no-cache \
200
201
--pull \
201
-
-t ghcr.io/linuxserver/ldap-auth:latest .
202
+
-t lscr.io/linuxserver/ldap-auth:latest .
202
203
```
203
204
204
205
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments