glpi update
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 1m11s
Container Publish / build-image (amd64) (push) Successful in 2m56s
Container Publish / update docker manifest (push) Successful in 20s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 5s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Successful in 2m55s

This commit is contained in:
2025-10-10 08:48:25 +02:00
parent 217bddf280
commit cc3b6501d3
3 changed files with 10 additions and 10 deletions

View File

@@ -48,13 +48,13 @@ jobs:
docker build \ docker build \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \ --tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-${{ matrix.arch }} \ --tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-${{ matrix.arch }} \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0-${{ matrix.arch }} \ --tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-${{ matrix.arch }} \
--build-arg "GLPI_VERSION=11.0.0" \ --build-arg "GLPI_VERSION=11.0.1" \
--build-arg "ALPINE_VERSION=3.22" \ --build-arg "ALPINE_VERSION=3.22" \
--platform linux/${{ matrix.arch }} --no-cache -f Dockerfile . --platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }}
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-${{ matrix.arch }} docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-${{ matrix.arch }}
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0-${{ matrix.arch }} docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-${{ matrix.arch }}
manifest: manifest:
name: update docker manifest name: update docker manifest
@@ -87,10 +87,10 @@ jobs:
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-arm64 --amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-arm64
docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11 docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11
- name: "11.0.0" - name: "11.0.1"
run: | run: |
docker manifest create \ docker manifest create \
${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0 \ ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1 \
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0-amd64 \ --amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-amd64 \
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0-arm64 --amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-arm64
docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.0 docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1

View File

@@ -8,7 +8,7 @@ Web server for GLPI deployment
```bash ```bash
cd src cd src
docker build -t docker.asperti.com/paspo/glpi --build-arg "ALPINE_VERSION=3.22" --build-arg "GLPI_VERSION=11.0.0" . docker build -t docker.asperti.com/paspo/glpi --build-arg "ALPINE_VERSION=3.22" --build-arg "GLPI_VERSION=11.0.1" .
``` ```
## run ## run

View File

@@ -37,7 +37,7 @@ services:
context: src context: src
args: args:
ALPINE_VERSION: 3.22 ALPINE_VERSION: 3.22
GLPI_VERSION: 11.0.0 GLPI_VERSION: 11.0.1
depends_on: depends_on:
db: db:
condition: service_healthy condition: service_healthy