Skip to content

Commit ceabef0

Browse files
Bot Updating Templated Files
1 parent 6f9ed07 commit ceabef0

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ SWAG - Secure Web Application Gateway (formerly known as letsencrypt, no relatio
4646

4747
## Supported Architectures
4848

49-
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/).
49+
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/).
5050

51-
Simply pulling `lscr.io/linuxserver/swag` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51+
Simply pulling `lscr.io/linuxserver/swag:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
5252

5353
The architectures supported by this image are:
5454

55-
| Architecture | Tag |
56-
| :----: | --- |
57-
| x86-64 | amd64-latest |
58-
| arm64 | arm64v8-latest |
59-
| armhf | arm32v7-latest |
55+
| Architecture | Available | Tag |
56+
| :----: | :----: | ---- |
57+
| x86-64 | | amd64-\<version tag\> |
58+
| arm64 | | arm64v8-\<version tag\> |
59+
| armhf|| arm32v7-\<version tag\> |
6060

6161
## Application Setup
6262

@@ -144,7 +144,7 @@ Here are some example snippets to help you get started creating a container.
144144
version: "2.1"
145145
services:
146146
swag:
147-
image: lscr.io/linuxserver/swag
147+
image: lscr.io/linuxserver/swag:latest
148148
container_name: swag
149149
cap_add:
150150
- NET_ADMIN
@@ -195,7 +195,7 @@ docker run -d \
195195
-p 80:80 `#optional` \
196196
-v /path/to/appdata/config:/config \
197197
--restart unless-stopped \
198-
lscr.io/linuxserver/swag
198+
lscr.io/linuxserver/swag:latest
199199
```
200200

201201
## Parameters
@@ -222,6 +222,10 @@ Container images are configured using parameters passed at runtime (such as thos
222222
| `-e STAGING=false` | Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes. |
223223
| `-v /config` | All the config files including the webroot reside here. |
224224

225+
### Portainer notice
226+
227+
This image utilises `cap_add` or `sysctl` to work properly. This is not implemented properly in some versions of Portainer, thus this image may not work if deployed through Portainer.
228+
225229
## Environment variables from files (Docker secrets)
226230

227231
You can set any environment variable from a file by using a special prepend `FILE__`.
@@ -265,7 +269,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
265269
* container version number
266270
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' swag`
267271
* image version number
268-
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/swag`
272+
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/swag:latest`
269273

270274
## Updating Info
271275

@@ -283,7 +287,7 @@ Below are the instructions for updating containers:
283287

284288
### Via Docker Run
285289

286-
* Update the image: `docker pull lscr.io/linuxserver/swag`
290+
* Update the image: `docker pull lscr.io/linuxserver/swag:latest`
287291
* Stop the running container: `docker stop swag`
288292
* Delete the container: `docker rm swag`
289293
* 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)

0 commit comments

Comments
 (0)