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
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,26 +46,26 @@ Find us at:
46
46
47
47
## Supported Architectures
48
48
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/).
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/mariadb` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
+
Simply pulling `lscr.io/linuxserver/mariadb:alpine` 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 | amd64-latest|
58
-
| arm64 | arm64v8-latest|
59
-
| armhf| arm32v7-latest|
55
+
| Architecture |Available |Tag |
56
+
| :----: |:----: | ---- |
57
+
| x86-64 |✅ |amd64-\<version tag\>|
58
+
| arm64 |✅ |arm64v8-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Version Tags
62
62
63
-
This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.
63
+
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
64
64
65
-
| Tag | Description |
66
-
| :----: | --- |
67
-
| latest | Currently using Ubuntu base images. Will be moved to the Alpine base in the near future. |
68
-
| alpine | Releases with an Alpine base. |
65
+
| Tag |Available |Description |
66
+
| :----: |:----: |--- |
67
+
| latest |✅ |Currently using Ubuntu base images. Will be moved to the Alpine base in the near future. |
68
+
| alpine |✅ |Releases with an Alpine base. |
69
69
70
70
## Application Setup
71
71
@@ -122,7 +122,7 @@ Here are some example snippets to help you get started creating a container.
122
122
version: "2.1"
123
123
services:
124
124
mariadb:
125
-
image: lscr.io/linuxserver/mariadb
125
+
image: lscr.io/linuxserver/mariadb:alpine
126
126
container_name: mariadb
127
127
environment:
128
128
- PUID=1000
@@ -156,7 +156,7 @@ docker run -d \
156
156
-p 3306:3306 \
157
157
-v path_to_data:/config \
158
158
--restart unless-stopped \
159
-
lscr.io/linuxserver/mariadb
159
+
lscr.io/linuxserver/mariadb:alpine
160
160
```
161
161
162
162
## Parameters
@@ -219,7 +219,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
219
219
* container version number
220
220
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' mariadb`
221
221
* image version number
222
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mariadb`
222
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mariadb:alpine`
223
223
224
224
## Updating Info
225
225
@@ -237,7 +237,7 @@ Below are the instructions for updating containers:
237
237
238
238
### Via Docker Run
239
239
240
-
* Update the image: `docker pull lscr.io/linuxserver/mariadb`
240
+
* Update the image: `docker pull lscr.io/linuxserver/mariadb:alpine`
241
241
* Stop the running container: `docker stop mariadb`
242
242
* Delete the container: `docker rm mariadb`
243
243
* 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)
@@ -272,7 +272,7 @@ cd docker-mariadb
272
272
docker build \
273
273
--no-cache \
274
274
--pull \
275
-
-t lscr.io/linuxserver/mariadb:latest.
275
+
-t lscr.io/linuxserver/mariadb:alpine.
276
276
```
277
277
278
278
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments