Skip to content

Commit

Permalink
Update php to 7.4.33
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikjuvonen committed Dec 2, 2024
1 parent 2294b9d commit a832f6f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM php:8.1.31-fpm-bullseye
FROM php:7.4.33-fpm

LABEL maintainer="Evermade"

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@ We provide multiple tags for images, below are some common examples:

```dockerfile
# To use a specific semantic version
FROM evermadefi/dockerpress-base-image:2.1.10
FROM evermadefi/dockerpress-base-image:1.2.42

# To use a specific semantic minor version
FROM evermadefi/dockerpress-base-image:2.1
FROM evermadefi/dockerpress-base-image:1.2

# To use a specific semantic major version
FROM evermadefi/dockerpress-base-image:2
FROM evermadefi/dockerpress-base-image:1

# To use a specific tag
FROM evermadefi/dockerpress-base-image:v2.1.10
FROM evermadefi/dockerpress-base-image:v1.2.42

# To use a specific branch
FROM evermadefi/dockerpress-base-image:master

# To use a specific commit hash
FROM evermadefi/dockerpress-base-image:c2f03ceda98b8df754d27c7b246eea7181351880
FROM evermadefi/dockerpress-base-image:63826e5ca547ff59d84f79b9d28c9ee35b1893c5

# To use GitHub Container Registry instead of Docker Hub (you can use all the same tags described above)
FROM ghcr.io/evermade/dockerpress-base-image:2.1.10
FROM ghcr.io/evermade/dockerpress-base-image:1.2.42
```

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:

`docker pull evermadefi/dockerpress-base-image:2.1.10`
`docker pull evermadefi/dockerpress-base-image:1.2.42`

And for GitHub Container Registry, same thing:

`docker pull ghcr.io/evermade/dockerpress-base-image:2.1.10`
`docker pull ghcr.io/evermade/dockerpress-base-image:1.2.42`

And enjoy!

Expand All @@ -57,14 +57,14 @@ And enjoy!

## Publishing a new version

1. [Draft a new release on GitHub](https://github.com/evermade/dockerpress-base-image/releases/new) using the MAJOR.MINOR.PATCH semantic versioning scheme for the new tag with the "v" prefix (e.g. v2.1.11). You can also create and push a tag separately using your preferred Git client, but GitHub allows you to do this all at once, so it is not necessary.
1. [Draft a new release on GitHub](https://github.com/evermade/dockerpress-base-image/releases/new) using the MAJOR.MINOR.PATCH semantic versioning scheme for the new tag with the "v" prefix (e.g. v1.2.43). You can also create and push a tag separately using your preferred Git client, but GitHub allows you to do this all at once, so it is not necessary.

2. Write a description with the changelog for the release using the following template:

```md
# Changelog summary

- Updated PHP base image to [8.1.28](https://www.php.net/ChangeLog-8.php#8.1.28)
- Updated PHP base image to [7.4.33](https://www.php.net/ChangeLog-7.php#7.4.33)

https://hub.docker.com/r/evermadefi/dockerpress-base-image/
https://github.com/evermade/dockerpress-base-image/pkgs/container/dockerpress-base-image
Expand Down

0 comments on commit a832f6f

Please sign in to comment.