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
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
109
-
```
109
+
110
+
```bash
110
111
docker run --rm --privileged multiarch/qemu-user-static:register --reset
111
112
```
112
113
113
114
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
114
115
115
-
## Update the chagelog
116
+
## Update the changelog
116
117
117
118
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-mysql-workbench/tree/master/root), add an entry to the changelog
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring:
14
14
15
-
* regular and timely application updates
16
-
* easy user mappings (PGID, PUID)
17
-
* custom base image with s6 overlay
18
-
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19
-
* regular security updates
15
+
* regular and timely application updates
16
+
* easy user mappings (PGID, PUID)
17
+
* custom base image with s6 overlay
18
+
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19
+
* regular security updates
20
20
21
21
Find us at:
22
+
22
23
*[Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
23
24
*[Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
24
25
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
@@ -44,7 +45,7 @@ Find us at:
44
45
45
46
## Supported Architectures
46
47
47
-
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/).
48
49
49
50
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
51
@@ -54,6 +55,15 @@ The architectures supported by this image are:
54
55
| :----: | --- |
55
56
| x86-64 | latest |
56
57
58
+
## Application Setup
59
+
60
+
The application can be accessed at:
61
+
62
+
*http://yourhost:3000/
63
+
64
+
By default the user/pass is abc/abc, if you change your password or want to login manually to the GUI session for any reason use the following link:
65
+
66
+
*http://yourhost:3000/?login=true
57
67
58
68
## Usage
59
69
@@ -85,7 +95,7 @@ services:
85
95
86
96
### docker cli
87
97
88
-
```
98
+
```bash
89
99
docker run -d \
90
100
--name=mysql-workbench \
91
101
-e PUID=1000 \
@@ -98,7 +108,6 @@ docker run -d \
98
108
ghcr.io/linuxserver/mysql-workbench
99
109
```
100
110
101
-
102
111
## Parameters
103
112
104
113
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
@@ -118,7 +127,7 @@ You can set any environment variable from a file by using a special prepend `FIL
118
127
119
128
As an example:
120
129
121
-
```
130
+
```bash
122
131
-e FILE__PASSWORD=/run/secrets/mysecretpassword
123
132
```
124
133
@@ -137,30 +146,17 @@ Ensure any volume directories on the host are owned by the same user you specify
137
146
138
147
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
By default the user/pass is abc/abc, if you change your password or want to login manually to the GUI session for any reason use the following link:
154
-
155
-
*http://yourhost:3000/?login=true
156
-
157
-
158
154
## Docker Mods
155
+
159
156
[](https://mods.linuxserver.io/?mod=mysql-workbench"view available mods for this container.")[](https://mods.linuxserver.io/?mod=universal"view available universal mods.")
160
157
161
158
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
162
159
163
-
164
160
## Support Info
165
161
166
162
* Shell access whilst the container is running: `docker exec -it mysql-workbench /bin/bash`
@@ -177,38 +173,45 @@ Most of our images are static, versioned, and require an image update and contai
177
173
Below are the instructions for updating containers:
178
174
179
175
### Via Docker Compose
176
+
180
177
* Update all images: `docker-compose pull`
181
178
* or update a single image: `docker-compose pull mysql-workbench`
182
179
* Let compose update all containers as necessary: `docker-compose up -d`
183
180
* or update a single container: `docker-compose up -d mysql-workbench`
184
181
* You can also remove the old dangling images: `docker image prune`
185
182
186
183
### Via Docker Run
184
+
187
185
* Update the image: `docker pull ghcr.io/linuxserver/mysql-workbench`
188
186
* Stop the running container: `docker stop mysql-workbench`
189
187
* Delete the container: `docker rm mysql-workbench`
190
188
* 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)
191
189
* You can also remove the old dangling images: `docker image prune`
192
190
193
191
### Via Watchtower auto-updater (only use if you don't remember the original parameters)
192
+
194
193
* Pull the latest image at its tag and replace it with the same env variables in one run:
195
-
```
194
+
195
+
```bash
196
196
docker run --rm \
197
197
-v /var/run/docker.sock:/var/run/docker.sock \
198
198
containrrr/watchtower \
199
199
--run-once mysql-workbench
200
200
```
201
+
201
202
* You can also remove the old dangling images: `docker image prune`
202
203
203
204
**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose).
* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
207
209
208
210
## Building locally
209
211
210
212
If you want to make local modifications to these images for development purposes or just to customize the logic:
0 commit comments