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/phpmyadmin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/phpmyadmin` 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
@@ -75,7 +76,7 @@ Here are some example snippets to help you get started creating a container.
75
76
version: "2.1"
76
77
services:
77
78
phpmyadmin:
78
-
image: ghcr.io/linuxserver/phpmyadmin
79
+
image: lscr.io/linuxserver/phpmyadmin
79
80
container_name: phpmyadmin
80
81
environment:
81
82
- PUID=1000
@@ -103,7 +104,7 @@ docker run -d \
103
104
-p 80:80 \
104
105
-v /path/to/appdata/config:/config \
105
106
--restart unless-stopped \
106
-
ghcr.io/linuxserver/phpmyadmin
107
+
lscr.io/linuxserver/phpmyadmin
107
108
```
108
109
109
110
## Parameters
@@ -163,7 +164,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
163
164
* container version number
164
165
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' phpmyadmin`
165
166
* image version number
166
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/phpmyadmin`
167
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/phpmyadmin`
167
168
168
169
## Updating Info
169
170
@@ -181,7 +182,7 @@ Below are the instructions for updating containers:
181
182
182
183
### Via Docker Run
183
184
184
-
* Update the image: `docker pull ghcr.io/linuxserver/phpmyadmin`
185
+
* Update the image: `docker pull lscr.io/linuxserver/phpmyadmin`
185
186
* Stop the running container: `docker stop phpmyadmin`
186
187
* Delete the container: `docker rm phpmyadmin`
187
188
* 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)
@@ -216,7 +217,7 @@ cd docker-phpmyadmin
216
217
docker build \
217
218
--no-cache \
218
219
--pull \
219
-
-t ghcr.io/linuxserver/phpmyadmin:latest .
220
+
-t lscr.io/linuxserver/phpmyadmin:latest .
220
221
```
221
222
222
223
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments