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
[MySQL Workbench](https://www.mysql.com/products/workbench/) is a unified visual tool for database architects, developers, and DBAs. MySQL Workbench provides data modeling, SQL development, and comprehensive administration tools for server configuration, user administration, backup, and much more.
39
39
@@ -66,6 +66,7 @@ docker create \
66
66
-e TZ=Europe/London \
67
67
-p 3000:3000 \
68
68
-v /path/to/config:/config \
69
+
--cap_add="IPC_LOCK" \
69
70
--restart unless-stopped \
70
71
linuxserver/mysql-workbench
71
72
```
@@ -90,6 +91,8 @@ services:
90
91
- /path/to/config:/config
91
92
ports:
92
93
- 3000:3000
94
+
cap_add:
95
+
- IPC_LOCK
93
96
restart: unless-stopped
94
97
```
95
98
@@ -104,6 +107,7 @@ Container images are configured using parameters passed at runtime (such as thos
104
107
|`-e PGID=1000`| for GroupID - see below for explanation |
105
108
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London. |
106
109
|`-v /config`| Users home directory in the container, stores program settings. |
110
+
|`--cap_add=`| Required for keyring functionality |
107
111
108
112
## Environment variables from files (Docker secrets)
0 commit comments