From 594fca7987ef044dd8534d30a5bed066cf4e6c2f Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:49:15 -0300 Subject: [PATCH] 4.4 --- Dockerfile | 2 +- docs/BUILDING.md | 16 ++++++++-------- docs/DOCKER-COMPOSE.md | 2 +- docs/LOGS.md | 2 +- docs/PURE-DOCKER.md | 8 ++++---- docs/REPO-SYNCING.md | 4 ++-- docs/UPGRADING.md | 4 ++-- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4be7fb9..7501598 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y \ && php -m \ && apt-get clean && rm -rf /var/lib/apt/lists/* -ARG VERSION=4.3 +ARG VERSION=4.4 ARG SERVICING=docker ENV CHEVERETO_ERROR_LOG=/dev/stderr \ diff --git a/docs/BUILDING.md b/docs/BUILDING.md index bda5626..ad00d26 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -4,7 +4,7 @@ Image building is **recommended** for Chevereto **paid edition**. If this is not ## Make image -This command creates the Docker image for Chevereto by downloading the software at `./chevereto` and then build from [Dockerfile](../Dockerfile). It will generate multiple semantic version tags `4.3.0`, `4.3` and `4`. +This command creates the Docker image for Chevereto by downloading the software at `./chevereto` and then build from [Dockerfile](../Dockerfile). It will generate multiple semantic version tags `4.4.0`, `4.4` and `4`. ```sh make image @@ -14,14 +14,14 @@ make image | Option | Example | Description | | ------- | ---------------- | ---------------------------- | -| VERSION | `VERSION=4.3` | System version (4.x) | +| VERSION | `VERSION=4.4` | System version (4.x) | | EDITION | `EDITION=pro` | System edition (pro,free) | | TARGET | `TARGET=default` | Image base name suffix (any) | Example: ```sh -make image VERSION=4.3 +make image VERSION=4.4 ``` ### Notes on TARGET @@ -30,9 +30,9 @@ Images will have a tag named following this convention: | Target | Naming | Example | | ------- | --------------------- | ----------------- | -| default | chevereto:VERSION | chevereto:4.3 | -| dev | chevereto-dev:VERSION | chevereto-dev:4.3 | -| any | chevereto-any:VERSION | chevereto-any:4.3 | +| default | chevereto:VERSION | chevereto:4.4 | +| dev | chevereto-dev:VERSION | chevereto-dev:4.4 | +| any | chevereto-any:VERSION | chevereto-any:4.4 | ## Make custom images @@ -44,11 +44,11 @@ make image-custom Available options: -* VERSION=4.3 +* VERSION=4.4 * TARGET=default Example: ```sh -make image-custom VERSION=4.3 +make image-custom VERSION=4.4 ``` diff --git a/docs/DOCKER-COMPOSE.md b/docs/DOCKER-COMPOSE.md index 315b529..c6668b6 100644 --- a/docs/DOCKER-COMPOSE.md +++ b/docs/DOCKER-COMPOSE.md @@ -15,7 +15,7 @@ make ## Options * NAMESPACE=chevereto -* VERSION=4.3 +* VERSION=4.4 * EDITION=pro * HTTP_PORT=80 * HTTPS_PORT=443 diff --git a/docs/LOGS.md b/docs/LOGS.md index 70eb398..9c9ae3c 100644 --- a/docs/LOGS.md +++ b/docs/LOGS.md @@ -8,7 +8,7 @@ make * NAMESPACE=yourproject * SERVICE=php -* VERSION=4.3 +* VERSION=4.4 (*) For `SERVICE` you can use `php` and `database` respectively to get the logs for the PHP Apache and the MariaDB database. diff --git a/docs/PURE-DOCKER.md b/docs/PURE-DOCKER.md index a89b203..9c8480a 100644 --- a/docs/PURE-DOCKER.md +++ b/docs/PURE-DOCKER.md @@ -29,8 +29,8 @@ By running the above command you will generate the following tags: * `chevereto:latest` * `chevereto:4` -* `chevereto:4.3` -* `chevereto:4.3.0` +* `chevereto:4.4` +* `chevereto:4.4.0` ## Upgrading @@ -44,10 +44,10 @@ Sync latest changes from [chevereto/docker](https://github.com/chevereto/docker) make sync ``` -**Note:** If there's a new branch (for example 4.3) switch to that branch running the following command: +**Note:** If there's a new branch (for example 4.4) switch to that branch running the following command: ```sh -git switch 4.3 +git switch 4.4 ``` ### Step 2: Re-build the container image diff --git a/docs/REPO-SYNCING.md b/docs/REPO-SYNCING.md index 42ee0f2..7ee0287 100644 --- a/docs/REPO-SYNCING.md +++ b/docs/REPO-SYNCING.md @@ -17,7 +17,7 @@ make sync If needed, switch to the new branch/tag. ```sh -git switch 4.3 +git switch 4.4 ``` ## Manual repo updating @@ -31,7 +31,7 @@ git fetch --tags -f && git pull --rebase --autostash Then switch to the new branch/tag if needed. ```sh -git switch 4.3 +git switch 4.4 ``` ## GitHub one-click repo updating diff --git a/docs/UPGRADING.md b/docs/UPGRADING.md index e1907d1..e625aea 100644 --- a/docs/UPGRADING.md +++ b/docs/UPGRADING.md @@ -10,10 +10,10 @@ Sync this repository to get the latest changes. make sync ``` -**Note:** If there's a new branch (for example 4.3) switch to that branch running the following command: +**Note:** If there's a new branch (for example 4.4) switch to that branch running the following command: ```sh -git switch 4.3 +git switch 4.4 ``` ## Step 2: Re-build the container image