Skip to content

Commit 849951b

Browse files
Bot Updating Templated Files
1 parent dbe79f7 commit 849951b

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,15 @@ Find us at:
4848

4949
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/mysql-workbench` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51+
Simply pulling `lscr.io/linuxserver/mysql-workbench: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 | latest |
55+
| Architecture | Available | Tag |
56+
| :----: | :----: | ---- |
57+
| x86-64 || amd64-\<version tag\> |
58+
| arm64 || |
59+
| armhf|| |
5860

5961
## Application Setup
6062

@@ -77,7 +79,7 @@ Here are some example snippets to help you get started creating a container.
7779
version: "2.1"
7880
services:
7981
mysql-workbench:
80-
image: lscr.io/linuxserver/mysql-workbench
82+
image: lscr.io/linuxserver/mysql-workbench:latest
8183
container_name: mysql-workbench
8284
environment:
8385
- PUID=1000
@@ -104,7 +106,7 @@ docker run -d \
104106
-v /path/to/config:/config \
105107
--cap-add="IPC_LOCK" \
106108
--restart unless-stopped \
107-
lscr.io/linuxserver/mysql-workbench
109+
lscr.io/linuxserver/mysql-workbench:latest
108110
```
109111

110112
## Parameters
@@ -163,7 +165,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
163165
* container version number
164166
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' mysql-workbench`
165167
* image version number
166-
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mysql-workbench`
168+
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mysql-workbench:latest`
167169

168170
## Updating Info
169171

@@ -181,7 +183,7 @@ Below are the instructions for updating containers:
181183

182184
### Via Docker Run
183185

184-
* Update the image: `docker pull lscr.io/linuxserver/mysql-workbench`
186+
* Update the image: `docker pull lscr.io/linuxserver/mysql-workbench:latest`
185187
* Stop the running container: `docker stop mysql-workbench`
186188
* Delete the container: `docker rm mysql-workbench`
187189
* 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)