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
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
49
49
-
Simply pulling `ghcr.io/linuxserver/mariadb` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/mariadb` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
51
51
52
The architectures supported by this image are:
52
53
@@ -120,7 +121,7 @@ Here are some example snippets to help you get started creating a container.
120
121
version: "2.1"
121
122
services:
122
123
mariadb:
123
-
image: ghcr.io/linuxserver/mariadb
124
+
image: lscr.io/linuxserver/mariadb
124
125
container_name: mariadb
125
126
environment:
126
127
- PUID=1000
@@ -154,7 +155,7 @@ docker run -d \
154
155
-p 3306:3306 \
155
156
-v path_to_data:/config \
156
157
--restart unless-stopped \
157
-
ghcr.io/linuxserver/mariadb
158
+
lscr.io/linuxserver/mariadb
158
159
```
159
160
160
161
## Parameters
@@ -217,7 +218,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
217
218
* container version number
218
219
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' mariadb`
219
220
* image version number
220
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/mariadb`
221
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mariadb`
221
222
222
223
## Updating Info
223
224
@@ -235,7 +236,7 @@ Below are the instructions for updating containers:
235
236
236
237
### Via Docker Run
237
238
238
-
* Update the image: `docker pull ghcr.io/linuxserver/mariadb`
239
+
* Update the image: `docker pull lscr.io/linuxserver/mariadb`
239
240
* Stop the running container: `docker stop mariadb`
240
241
* Delete the container: `docker rm mariadb`
241
242
* 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)
@@ -270,7 +271,7 @@ cd docker-mariadb
270
271
docker build \
271
272
--no-cache \
272
273
--pull \
273
-
-t ghcr.io/linuxserver/mariadb:latest .
274
+
-t lscr.io/linuxserver/mariadb:latest .
274
275
```
275
276
276
277
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments