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
@@ -46,7 +47,7 @@ SWAG - Secure Web Application Gateway (formerly known as letsencrypt, no relatio
46
47
47
48
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/swag` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/swag` 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
@@ -141,7 +142,7 @@ Here are some example snippets to help you get started creating a container.
141
142
version: "2.1"
142
143
services:
143
144
swag:
144
-
image: ghcr.io/linuxserver/swag
145
+
image: lscr.io/linuxserver/swag
145
146
container_name: swag
146
147
cap_add:
147
148
- NET_ADMIN
@@ -194,7 +195,7 @@ docker run -d \
194
195
-p 80:80 `#optional` \
195
196
-v /path/to/appdata/config:/config \
196
197
--restart unless-stopped \
197
-
ghcr.io/linuxserver/swag
198
+
lscr.io/linuxserver/swag
198
199
```
199
200
200
201
## Parameters
@@ -265,7 +266,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
265
266
* container version number
266
267
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' swag`
267
268
* image version number
268
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/swag`
269
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/swag`
269
270
270
271
## Updating Info
271
272
@@ -283,7 +284,7 @@ Below are the instructions for updating containers:
283
284
284
285
### Via Docker Run
285
286
286
-
* Update the image: `docker pull ghcr.io/linuxserver/swag`
287
+
* Update the image: `docker pull lscr.io/linuxserver/swag`
287
288
* Stop the running container: `docker stop swag`
288
289
* Delete the container: `docker rm swag`
289
290
* 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)
@@ -318,7 +319,7 @@ cd docker-swag
318
319
docker build \
319
320
--no-cache \
320
321
--pull \
321
-
-t ghcr.io/linuxserver/swag:latest .
322
+
-t lscr.io/linuxserver/swag:latest .
322
323
```
323
324
324
325
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments