Skip to content

Commit c6bd5c6

Browse files
Bot Updating Templated Files
1 parent 42a5bbe commit c6bd5c6

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,26 @@ Find us at:
4646

4747
## Supported Architectures
4848

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/).
5050

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.
5252

5353
The architectures supported by this image are:
5454

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\> |
6060

6161
## Version Tags
6262

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.
6464

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. |
6969

7070
## Application Setup
7171

@@ -122,7 +122,7 @@ Here are some example snippets to help you get started creating a container.
122122
version: "2.1"
123123
services:
124124
mariadb:
125-
image: lscr.io/linuxserver/mariadb
125+
image: lscr.io/linuxserver/mariadb:alpine
126126
container_name: mariadb
127127
environment:
128128
- PUID=1000
@@ -156,7 +156,7 @@ docker run -d \
156156
-p 3306:3306 \
157157
-v path_to_data:/config \
158158
--restart unless-stopped \
159-
lscr.io/linuxserver/mariadb
159+
lscr.io/linuxserver/mariadb:alpine
160160
```
161161

162162
## Parameters
@@ -219,7 +219,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
219219
* container version number
220220
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' mariadb`
221221
* 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`
223223

224224
## Updating Info
225225

@@ -237,7 +237,7 @@ Below are the instructions for updating containers:
237237

238238
### Via Docker Run
239239

240-
* Update the image: `docker pull lscr.io/linuxserver/mariadb`
240+
* Update the image: `docker pull lscr.io/linuxserver/mariadb:alpine`
241241
* Stop the running container: `docker stop mariadb`
242242
* Delete the container: `docker rm mariadb`
243243
* 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
272272
docker build \
273273
--no-cache \
274274
--pull \
275-
-t lscr.io/linuxserver/mariadb:latest .
275+
-t lscr.io/linuxserver/mariadb:alpine .
276276
```
277277

278278
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`

0 commit comments

Comments
 (0)