diff options
author | Valery Piashchynski <[email protected]> | 2024-04-11 17:31:58 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2024-04-11 17:31:58 +0200 |
commit | d18c4be21192fd354d15828c1fb8482550cdc02e (patch) | |
tree | 00875431832b18a0830ce090c761863ffebedbbb | |
parent | acf9dbf69f2a11cafca417ab0f9c13632bbeabf8 (diff) |
chore: update RR 2023 doc entries
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | README.md | 12 |
2 files changed, 6 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cb23efd..82318fa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,3 @@ ### `SDK`: - 🔥 Use a small random jitter to prevent the [Thundering herd problem](https://en.wikipedia.org/wiki/Thundering_herd_problem) when user uses `max_jobs` option and all the workers restarted at the same time. This feature is enabled automatically. (thanks @Kaspiman) - -### <center>🧹Chore:</center> - -- 🧑🏭: All `since` log entries are now always shown as milliseconds, [FR](https://github.com/roadrunner-server/roadrunner/issues/1858), (thanks @dmitryuk). - ---- @@ -6,7 +6,7 @@ </a> <p align="center"> <a href="https://packagist.org/packages/spiral/roadrunner"><img src="https://poser.pugx.org/spiral/roadrunner/version"></a> - <a href="https://pkg.go.dev/github.com/roadrunner-server/roadrunner/v2023?tab=doc"><img src="https://godoc.org/github.com/roadrunner-server/roadrunner/v2023?status.svg"></a> + <a href="https://pkg.go.dev/github.com/roadrunner-server/roadrunner/v2024?tab=doc"><img src="https://godoc.org/github.com/roadrunner-server/roadrunner/v2024?status.svg"></a> <a href="https://twitter.com/spiralphp"><img src="https://img.shields.io/twitter/follow/spiralphp?style=social"></a> <a href="https://codecov.io/gh/roadrunner-server/roadrunner/"><img src="https://codecov.io/gh/roadrunner-server/roadrunner/branch/master/graph/badge.svg"></a> <a href="https://github.com/roadrunner-server/roadrunner/actions"><img src="https://github.com/roadrunner-server/roadrunner/workflows/rr_cli_tests/badge.svg" alt=""></a> @@ -52,12 +52,12 @@ OSX, Linux, FreeBSD, and Windows. Instructions for using these binaries are on t ## Docker: -To get the roadrunner binary file you can use our docker image: `ghcr.io/roadrunner-server/roadrunner:2023.X.X` (more information about +To get the roadrunner binary file you can use our docker image: `ghcr.io/roadrunner-server/roadrunner:2024.X.X` (more information about image and tags can be found [here](https://github.com/roadrunner-server/roadrunner/pkgs/container/roadrunner)). ```dockerfile -FROM ghcr.io/roadrunner-server/roadrunner:2023.X.X AS roadrunner -FROM php:8.2-cli +FROM ghcr.io/roadrunner-server/roadrunner:2024.X.X AS roadrunner +FROM php:8.3-cli COPY --from=roadrunner /usr/bin/rr /usr/local/bin/rr @@ -87,8 +87,8 @@ Server binary will be available at the root of your project. ## Installation option for the Debian-derivatives (Ubuntu, Mint, MX, etc) ```bash -wget https://github.com/roadrunner-server/roadrunner/releases/download/v2023.X.X/roadrunner-2023.X.X-linux-amd64.deb -sudo dpkg -i roadrunner-2023.X.X-linux-amd64.deb +wget https://github.com/roadrunner-server/roadrunner/releases/download/v2024.X.X/roadrunner-2024.X.X-linux-amd64.deb +sudo dpkg -i roadrunner-2024.X.X-linux-amd64.deb ``` ## Download the latest release via curl: |