Skip to content

Commit

Permalink
Update php to 8.2.26
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikjuvonen committed Dec 2, 2024
1 parent 2294b9d commit 5380981
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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:8.2.26-fpm-bullseye

LABEL maintainer="Evermade"

Expand Down
18 changes: 9 additions & 9 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:2.2.5

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

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

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

# 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:34e867db03b9ce6b4d50e3322f090556a47a98c6

# 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:2.2.5
```

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:2.2.5`

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:2.2.5`

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. v2.2.6). 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 [8.2.18](https://www.php.net/ChangeLog-8.php#8.2.18)

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 5380981

Please sign in to comment.