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
{{ message }}
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -45,17 +45,17 @@ Find us at:
45
45
46
46
## Supported Architectures
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
+
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
49
50
-
Simply pulling `lscr.io/lsiodev/gmail-order-bot` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/lsiodev/gmail-order-bot:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
51
52
52
The architectures supported by this image are:
53
53
54
-
| Architecture | Tag |
55
-
| :----: | --- |
56
-
| x86-64 | amd64-latest|
57
-
| arm64 | arm64v8-latest|
58
-
| armhf| arm32v7-latest|
54
+
| Architecture |Available |Tag |
55
+
| :----: |:----: | ---- |
56
+
| x86-64 |✅ |amd64-\<version tag\>|
57
+
| arm64 |✅ |arm64v8-\<version tag\>|
58
+
| armhf| ✅ | arm32v7-\<version tag\>|
59
59
60
60
## Application Setup
61
61
@@ -112,7 +112,7 @@ Here are some example snippets to help you get started creating a container.
112
112
version: "2.1"
113
113
services:
114
114
gmail-order-bot:
115
-
image: lscr.io/lsiodev/gmail-order-bot
115
+
image: lscr.io/lsiodev/gmail-order-bot:latest
116
116
container_name: gmail-order-bot
117
117
environment:
118
118
- PUID=1000
@@ -135,7 +135,7 @@ docker run -d \
135
135
-e LOOP_TIME=60 \
136
136
-v /path/to/data:/config \
137
137
--restart unless-stopped \
138
-
lscr.io/lsiodev/gmail-order-bot
138
+
lscr.io/lsiodev/gmail-order-bot:latest
139
139
```
140
140
141
141
## Parameters
@@ -193,7 +193,7 @@ We publish various [Docker Mods](https://github.com/lsiodev/docker-mods) to enab
193
193
* container version number
194
194
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' gmail-order-bot`
195
195
* image version number
196
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/lsiodev/gmail-order-bot`
196
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/lsiodev/gmail-order-bot:latest`
197
197
198
198
## Updating Info
199
199
@@ -211,7 +211,7 @@ Below are the instructions for updating containers:
211
211
212
212
### Via Docker Run
213
213
214
-
* Update the image: `docker pull lscr.io/lsiodev/gmail-order-bot`
214
+
* Update the image: `docker pull lscr.io/lsiodev/gmail-order-bot:latest`
215
215
* Stop the running container: `docker stop gmail-order-bot`
216
216
* Delete the container: `docker rm gmail-order-bot`
217
217
* 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