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
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
49
49
-
Simply pulling `ghcr.io/linuxserver/mysql-workbench` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
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.
50
51
51
52
The architectures supported by this image are:
52
53
@@ -75,7 +76,7 @@ Here are some example snippets to help you get started creating a container.
75
76
version: "2.1"
76
77
services:
77
78
mysql-workbench:
78
-
image: ghcr.io/linuxserver/mysql-workbench
79
+
image: lscr.io/linuxserver/mysql-workbench
79
80
container_name: mysql-workbench
80
81
environment:
81
82
- PUID=1000
@@ -102,7 +103,7 @@ docker run -d \
102
103
-v /path/to/config:/config \
103
104
--cap-add="IPC_LOCK" \
104
105
--restart unless-stopped \
105
-
ghcr.io/linuxserver/mysql-workbench
106
+
lscr.io/linuxserver/mysql-workbench
106
107
```
107
108
108
109
## Parameters
@@ -161,7 +162,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
161
162
* container version number
162
163
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' mysql-workbench`
163
164
* image version number
164
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/mysql-workbench`
165
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mysql-workbench`
165
166
166
167
## Updating Info
167
168
@@ -179,7 +180,7 @@ Below are the instructions for updating containers:
179
180
180
181
### Via Docker Run
181
182
182
-
* Update the image: `docker pull ghcr.io/linuxserver/mysql-workbench`
183
+
* Update the image: `docker pull lscr.io/linuxserver/mysql-workbench`
183
184
* Stop the running container: `docker stop mysql-workbench`
184
185
* Delete the container: `docker rm mysql-workbench`
185
186
* 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)
@@ -214,7 +215,7 @@ cd docker-mysql-workbench
214
215
docker build \
215
216
--no-cache \
216
217
--pull \
217
-
-t ghcr.io/linuxserver/mysql-workbench:latest .
218
+
-t lscr.io/linuxserver/mysql-workbench:latest .
218
219
```
219
220
220
221
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments