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
Copy file name to clipboardExpand all lines: README.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,27 +52,27 @@ Find us at:
52
52
53
53
## Supported Architectures
54
54
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/).
56
56
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.
58
58
59
59
The architectures supported by this image are:
60
60
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\>|
66
66
67
67
## Version Tags
68
68
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.
70
70
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 |
76
76
77
77
## Application Setup
78
78
@@ -100,7 +100,7 @@ Here are some example snippets to help you get started creating a container.
100
100
version: "2.1"
101
101
services:
102
102
code-server:
103
-
image: lscr.io/linuxserver/code-server
103
+
image: lscr.io/linuxserver/code-server:latest
104
104
container_name: code-server
105
105
environment:
106
106
- PUID=1000
@@ -136,7 +136,7 @@ docker run -d \
136
136
-p 8443:8443 \
137
137
-v /path/to/appdata/config:/config \
138
138
--restart unless-stopped \
139
-
lscr.io/linuxserver/code-server
139
+
lscr.io/linuxserver/code-server:latest
140
140
```
141
141
142
142
## Parameters
@@ -200,7 +200,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
200
200
* container version number
201
201
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' code-server`
202
202
* 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`
204
204
205
205
## Updating Info
206
206
@@ -218,7 +218,7 @@ Below are the instructions for updating containers:
218
218
219
219
### Via Docker Run
220
220
221
-
* Update the image: `docker pull lscr.io/linuxserver/code-server`
221
+
* Update the image: `docker pull lscr.io/linuxserver/code-server:latest`
222
222
* Stop the running container: `docker stop code-server`
223
223
* Delete the container: `docker rm code-server`
224
224
* 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