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: .github/workflows/external_trigger.yml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ jobs:
18
18
fi
19
19
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MYSQL_WORKBENCH_MASTER\". ****"
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Find us at:
46
46
47
47
## Supported Architectures
48
48
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/).
49
+
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/).
50
50
51
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.
52
52
@@ -55,6 +55,8 @@ The architectures supported by this image are:
55
55
| Architecture | Tag |
56
56
| :----: | --- |
57
57
| x86-64 | latest |
58
+
| arm64 | arm64v8-latest |
59
+
| armhf | arm32v7-latest |
58
60
59
61
## Application Setup
60
62
@@ -87,8 +89,6 @@ services:
87
89
- /path/to/config:/config
88
90
ports:
89
91
- 3000:3000
90
-
cap_add:
91
-
- IPC_LOCK
92
92
restart: unless-stopped
93
93
```
94
94
@@ -102,7 +102,6 @@ docker run -d \
102
102
-e TZ=Europe/London \
103
103
-p 3000:3000 \
104
104
-v /path/to/config:/config \
105
-
--cap-add="IPC_LOCK" \
106
105
--restart unless-stopped \
107
106
lscr.io/linuxserver/mysql-workbench
108
107
```
@@ -118,7 +117,6 @@ Container images are configured using parameters passed at runtime (such as thos
118
117
|`-e PGID=1000`| for GroupID - see below for explanation |
119
118
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London. |
120
119
|`-v /config`| Users home directory in the container, stores program settings. |
121
-
|`--cap-add=`| Required for keyring functionality |
122
120
123
121
## Environment variables from files (Docker secrets)
124
122
@@ -229,6 +227,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
0 commit comments