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
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,13 +48,15 @@ Find us at:
48
48
49
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/).
50
50
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.
52
52
53
53
The architectures supported by this image are:
54
54
55
-
| Architecture | Tag |
56
-
| :----: | --- |
57
-
| x86-64 | latest |
55
+
| Architecture | Available | Tag |
56
+
| :----: | :----: | ---- |
57
+
| x86-64 | ✅ | amd64-\<version tag\>|
58
+
| arm64 | ❌ ||
59
+
| armhf| ❌ ||
58
60
59
61
## Application Setup
60
62
@@ -77,7 +79,7 @@ Here are some example snippets to help you get started creating a container.
77
79
version: "2.1"
78
80
services:
79
81
mysql-workbench:
80
-
image: lscr.io/linuxserver/mysql-workbench
82
+
image: lscr.io/linuxserver/mysql-workbench:latest
81
83
container_name: mysql-workbench
82
84
environment:
83
85
- PUID=1000
@@ -104,7 +106,7 @@ docker run -d \
104
106
-v /path/to/config:/config \
105
107
--cap-add="IPC_LOCK" \
106
108
--restart unless-stopped \
107
-
lscr.io/linuxserver/mysql-workbench
109
+
lscr.io/linuxserver/mysql-workbench:latest
108
110
```
109
111
110
112
## Parameters
@@ -163,7 +165,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
163
165
* container version number
164
166
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' mysql-workbench`
165
167
* 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`
167
169
168
170
## Updating Info
169
171
@@ -181,7 +183,7 @@ Below are the instructions for updating containers:
181
183
182
184
### Via Docker Run
183
185
184
-
* Update the image: `docker pull lscr.io/linuxserver/mysql-workbench`
186
+
* Update the image: `docker pull lscr.io/linuxserver/mysql-workbench:latest`
185
187
* Stop the running container: `docker stop mysql-workbench`
186
188
* Delete the container: `docker rm mysql-workbench`
187
189
* 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