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
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,17 +46,17 @@ 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/phpmyadmin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
51
+
Simply pulling `lscr.io/linuxserver/phpmyadmin:latest` 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
## Application Setup
62
62
@@ -77,7 +77,7 @@ Here are some example snippets to help you get started creating a container.
77
77
version: "2.1"
78
78
services:
79
79
phpmyadmin:
80
-
image: lscr.io/linuxserver/phpmyadmin
80
+
image: lscr.io/linuxserver/phpmyadmin:latest
81
81
container_name: phpmyadmin
82
82
environment:
83
83
- PUID=1000
@@ -105,7 +105,7 @@ docker run -d \
105
105
-p 80:80 \
106
106
-v /path/to/appdata/config:/config \
107
107
--restart unless-stopped \
108
-
lscr.io/linuxserver/phpmyadmin
108
+
lscr.io/linuxserver/phpmyadmin:latest
109
109
```
110
110
111
111
## Parameters
@@ -165,7 +165,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
165
165
* container version number
166
166
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' phpmyadmin`
167
167
* image version number
168
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/phpmyadmin`
168
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/phpmyadmin:latest`
169
169
170
170
## Updating Info
171
171
@@ -183,7 +183,7 @@ Below are the instructions for updating containers:
183
183
184
184
### Via Docker Run
185
185
186
-
* Update the image: `docker pull lscr.io/linuxserver/phpmyadmin`
186
+
* Update the image: `docker pull lscr.io/linuxserver/phpmyadmin:latest`
187
187
* Stop the running container: `docker stop phpmyadmin`
188
188
* Delete the container: `docker rm phpmyadmin`
189
189
* 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)
0 commit comments