Skip to content

Commit 9a9f16a

Browse files
Bot Updating Templated Files
1 parent 6721129 commit 9a9f16a

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -52,27 +52,27 @@ Find us at:
5252

5353
## Supported Architectures
5454

55-
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/).
55+
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/).
5656

57-
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.
57+
Simply pulling `lscr.io/linuxserver/code-server:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
5858

5959
The architectures supported by this image are:
6060

61-
| Architecture | Tag |
62-
| :----: | --- |
63-
| x86-64 | amd64-latest |
64-
| arm64 | arm64v8-latest |
65-
| armhf | arm32v7-latest |
61+
| Architecture | Available | Tag |
62+
| :----: | :----: | ---- |
63+
| x86-64 | | amd64-\<version tag\> |
64+
| arm64 | | arm64v8-\<version tag\> |
65+
| armhf|| arm32v7-\<version tag\> |
6666

6767
## Version Tags
6868

69-
This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.
69+
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
7070

71-
| Tag | Description |
72-
| :----: | --- |
73-
| latest | Stable releases |
74-
| focal | DEPRECATED (no longer updated, `latest` is rebased on focal) - Stable releases, based on Ubuntu Focal |
75-
| development | DEPRECATED (no longer updated) - Prereleases from their GitHub |
71+
| Tag | Available | Description |
72+
| :----: | :----: |--- |
73+
| latest | | Stable releases |
74+
| focal | | DEPRECATED (no longer updated, `latest` is rebased on focal) - Stable releases, based on Ubuntu Focal |
75+
| development | | DEPRECATED (no longer updated) - Prereleases from their GitHub |
7676

7777
## Application Setup
7878

@@ -100,7 +100,7 @@ Here are some example snippets to help you get started creating a container.
100100
version: "2.1"
101101
services:
102102
code-server:
103-
image: lscr.io/linuxserver/code-server
103+
image: lscr.io/linuxserver/code-server:latest
104104
container_name: code-server
105105
environment:
106106
- PUID=1000
@@ -136,7 +136,7 @@ docker run -d \
136136
-p 8443:8443 \
137137
-v /path/to/appdata/config:/config \
138138
--restart unless-stopped \
139-
lscr.io/linuxserver/code-server
139+
lscr.io/linuxserver/code-server:latest
140140
```
141141

142142
## Parameters
@@ -200,7 +200,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
200200
* container version number
201201
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' code-server`
202202
* image version number
203-
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/code-server`
203+
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/code-server:latest`
204204

205205
## Updating Info
206206

@@ -218,7 +218,7 @@ Below are the instructions for updating containers:
218218

219219
### Via Docker Run
220220

221-
* Update the image: `docker pull lscr.io/linuxserver/code-server`
221+
* Update the image: `docker pull lscr.io/linuxserver/code-server:latest`
222222
* Stop the running container: `docker stop code-server`
223223
* Delete the container: `docker rm code-server`
224224
* 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)