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
@@ -111,7 +112,7 @@ Here are some example snippets to help you get started creating a container.
111
112
version: "2.1"
112
113
services:
113
114
mariadb:
114
-
image: ghcr.io/linuxserver/mariadb
115
+
image: lscr.io/linuxserver/mariadb
115
116
container_name: mariadb
116
117
environment:
117
118
- PUID=1000
@@ -145,7 +146,7 @@ docker run -d \
145
146
-p 3306:3306 \
146
147
-v path_to_data:/config \
147
148
--restart unless-stopped \
148
-
ghcr.io/linuxserver/mariadb
149
+
lscr.io/linuxserver/mariadb
149
150
```
150
151
151
152
## Parameters
@@ -208,7 +209,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
208
209
* container version number
209
210
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' mariadb`
210
211
* image version number
211
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/mariadb`
212
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/mariadb`
212
213
213
214
## Updating Info
214
215
@@ -226,7 +227,7 @@ Below are the instructions for updating containers:
226
227
227
228
### Via Docker Run
228
229
229
-
* Update the image: `docker pull ghcr.io/linuxserver/mariadb`
230
+
* Update the image: `docker pull lscr.io/linuxserver/mariadb`
230
231
* Stop the running container: `docker stop mariadb`
231
232
* Delete the container: `docker rm mariadb`
232
233
* 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)
@@ -261,7 +262,7 @@ cd docker-mariadb
261
262
docker build \
262
263
--no-cache \
263
264
--pull \
264
-
-t ghcr.io/linuxserver/mariadb:latest .
265
+
-t lscr.io/linuxserver/mariadb:latest .
265
266
```
266
267
267
268
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments