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
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
3
3
A great base image for WordPress sites.
4
4
5
-
6
5
## Usage
7
6
8
7
The base image is available on both [Docker Hub](https://hub.docker.com/r/evermadefi/dockerpress-base-image) and [GitHub Container Registry](https://github.com/evermade/dockerpress-base-image/pkgs/container/dockerpress-base-image).
@@ -11,7 +10,7 @@ We provide multiple tags for images, below are some common examples:
11
10
12
11
```dockerfile
13
12
# To use a specific semantic version
14
-
FROM evermadefi/dockerpress-base-image:2.0.16
13
+
FROM evermadefi/dockerpress-base-image:2.0.17
15
14
16
15
# To use a specific semantic minor version
17
16
FROM evermadefi/dockerpress-base-image:2.0
@@ -20,29 +19,28 @@ FROM evermadefi/dockerpress-base-image:2.0
20
19
FROM evermadefi/dockerpress-base-image:2
21
20
22
21
# To use a specific tag
23
-
FROM evermadefi/dockerpress-base-image:v2.0.16
22
+
FROM evermadefi/dockerpress-base-image:v2.0.17
24
23
25
24
# To use a specific branch
26
25
FROM evermadefi/dockerpress-base-image:master
27
26
28
27
# To use a specific commit hash
29
-
FROM evermadefi/dockerpress-base-image:7ebaf2867604be3212cab697694e55b577d6f019
28
+
FROM evermadefi/dockerpress-base-image:93233ddf75072565d23cc86c8a4583b16c8f4356
30
29
31
30
# To use GitHub Container Registry instead of Docker Hub (you can use all the same tags described above)
32
-
FROM ghcr.io/evermade/dockerpress-base-image:2.0.16
31
+
FROM ghcr.io/evermade/dockerpress-base-image:2.0.17
33
32
```
34
33
35
34
To simply just pull the image or update a stale local copy, run the `docker pull` command like so with the tag you wish you pull:
0 commit comments