Compare commits
18 Commits
e6c28c3b15
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
cc3b6501d3
|
|||
|
217bddf280
|
|||
|
b3e1301121
|
|||
|
903858dd62
|
|||
|
9fe7a95407
|
|||
|
7541c6cfeb
|
|||
|
8f6386ef12
|
|||
|
03c6fc0b4a
|
|||
|
4f47e82531
|
|||
|
f5500d5133
|
|||
|
395cae112a
|
|||
|
e24e2b3d5b
|
|||
|
2cb032520a
|
|||
|
604863c39c
|
|||
|
4218c4fac3
|
|||
|
990ac9e0a8
|
|||
|
4fd2ca42dd
|
|||
|
46ef5a68a2
|
129
.drone.star
129
.drone.star
@@ -1,129 +0,0 @@
|
|||||||
def main(ctx):
|
|
||||||
archs = ["amd64", "arm64"] ## arm
|
|
||||||
glpi_version = "10.0.17"
|
|
||||||
alpine_version = "3.20"
|
|
||||||
|
|
||||||
out = []
|
|
||||||
for arch in archs:
|
|
||||||
out += onpush(ctx, glpi_version, alpine_version, arch)
|
|
||||||
|
|
||||||
for arch in archs:
|
|
||||||
out += build_publish(ctx, glpi_version, alpine_version, arch)
|
|
||||||
|
|
||||||
out += manifest_publish(ctx, glpi_version, archs)
|
|
||||||
|
|
||||||
return out
|
|
||||||
|
|
||||||
def onpush(ctx, glpi_version, alpine_version, arch):
|
|
||||||
return [{
|
|
||||||
"kind": "pipeline",
|
|
||||||
"type": "docker",
|
|
||||||
"name": "build-onpush-%s-%s" % (glpi_version, arch),
|
|
||||||
"platform": {
|
|
||||||
"arch": arch,
|
|
||||||
"os": "linux",
|
|
||||||
},
|
|
||||||
"steps": [{
|
|
||||||
"name": "build_on_push",
|
|
||||||
"image": "plugins/docker:linux-%s" % (arch),
|
|
||||||
"settings": {
|
|
||||||
"context": "src",
|
|
||||||
"dockerfile": "src/Dockerfile",
|
|
||||||
"dry_run": True,
|
|
||||||
"repo": "docker.asperti.com/paspo/glpi",
|
|
||||||
"build_args": [
|
|
||||||
"GLPI_VERSION=%s" % (glpi_version),
|
|
||||||
"ALPINE_VERSION=%s" % (alpine_version)
|
|
||||||
],
|
|
||||||
},
|
|
||||||
}],
|
|
||||||
"trigger": {
|
|
||||||
"event": ['push'],
|
|
||||||
}
|
|
||||||
}]
|
|
||||||
|
|
||||||
def build_publish(ctx, glpi_version, alpine_version, arch):
|
|
||||||
major = glpi_version.partition(".")[0];
|
|
||||||
return [{
|
|
||||||
"kind": "pipeline",
|
|
||||||
"type": "docker",
|
|
||||||
"name": "build-publish-%s-%s" % (glpi_version, arch),
|
|
||||||
"platform": {
|
|
||||||
"arch": arch,
|
|
||||||
"os": "linux",
|
|
||||||
},
|
|
||||||
"steps": [{
|
|
||||||
"name": "build_on_push",
|
|
||||||
"image": "plugins/docker:linux-%s" % (arch),
|
|
||||||
"settings": {
|
|
||||||
"context": "src",
|
|
||||||
"dockerfile": "src/Dockerfile",
|
|
||||||
"build_args": [
|
|
||||||
"GLPI_VERSION=%s" % (glpi_version),
|
|
||||||
"ALPINE_VERSION=%s" % (alpine_version)
|
|
||||||
],
|
|
||||||
"username": {
|
|
||||||
"from_secret": "docker_username",
|
|
||||||
},
|
|
||||||
"password": {
|
|
||||||
"from_secret": "docker_password",
|
|
||||||
},
|
|
||||||
"registry": "docker.asperti.com",
|
|
||||||
"repo": "docker.asperti.com/paspo/glpi",
|
|
||||||
"tags": [
|
|
||||||
"latest-%s" % (arch),
|
|
||||||
"%s-%s" % (major, arch),
|
|
||||||
"%s-%s" % (glpi_version, arch)
|
|
||||||
],
|
|
||||||
"auto_tag": False,
|
|
||||||
"force_tag": True,
|
|
||||||
"daemon_off": False,
|
|
||||||
},
|
|
||||||
}],
|
|
||||||
"trigger": {
|
|
||||||
"ref": [
|
|
||||||
"refs/heads/master",
|
|
||||||
"refs/tags/**",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
}]
|
|
||||||
|
|
||||||
def manifest_publish(ctx, glpi_version, archs):
|
|
||||||
major = glpi_version.partition(".")[0];
|
|
||||||
return [{
|
|
||||||
"kind": "pipeline",
|
|
||||||
"type": "docker",
|
|
||||||
"name": "manifest-%s" % (glpi_version),
|
|
||||||
"platform": {
|
|
||||||
"arch": archs[0],
|
|
||||||
"os": "linux",
|
|
||||||
},
|
|
||||||
"steps": [{
|
|
||||||
"name": "manifest",
|
|
||||||
"image": "plugins/manifest",
|
|
||||||
"settings": {
|
|
||||||
"spec": "manifest.tmpl",
|
|
||||||
"username": {
|
|
||||||
"from_secret": "docker_username",
|
|
||||||
},
|
|
||||||
"password": {
|
|
||||||
"from_secret": "docker_password",
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
"latest",
|
|
||||||
major,
|
|
||||||
glpi_version
|
|
||||||
],
|
|
||||||
"ignore_missing": True,
|
|
||||||
"force_tag": True,
|
|
||||||
},
|
|
||||||
}],
|
|
||||||
"trigger": {
|
|
||||||
"ref": [
|
|
||||||
"refs/heads/master",
|
|
||||||
"refs/tags/**",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
"depends_on": ["build-publish-%s-%s" % (glpi_version, arch) for arch in archs]
|
|
||||||
}]
|
|
||||||
|
|
||||||
96
.gitea/workflows/build_and_publish.yaml
Normal file
96
.gitea/workflows/build_and_publish.yaml
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
---
|
||||||
|
name: Container Publish
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: docker.asperti.com
|
||||||
|
REPOSITORY: paspo/glpi
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 12 * * 3"
|
||||||
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
workflow_run:
|
||||||
|
workflows: [vulnscan.yaml]
|
||||||
|
types: [completed]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
on-success-skip:
|
||||||
|
runs-on:
|
||||||
|
labels: ubuntu-latest
|
||||||
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
|
steps:
|
||||||
|
- run: exit_with_success
|
||||||
|
|
||||||
|
build-image:
|
||||||
|
runs-on:
|
||||||
|
labels: [ubuntu-latest, "arch-${{ matrix.arch }}"]
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: [amd64, arm64]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Login to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and publish
|
||||||
|
run: |
|
||||||
|
cd src && \
|
||||||
|
docker build \
|
||||||
|
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
|
||||||
|
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-${{ matrix.arch }} \
|
||||||
|
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-${{ matrix.arch }} \
|
||||||
|
--build-arg "GLPI_VERSION=11.0.1" \
|
||||||
|
--build-arg "ALPINE_VERSION=3.22" \
|
||||||
|
--platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
|
||||||
|
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.0.1-${{ matrix.arch }}
|
||||||
|
|
||||||
|
manifest:
|
||||||
|
name: update docker manifest
|
||||||
|
needs: build-image
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Login to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: latest
|
||||||
|
run: |
|
||||||
|
docker manifest create \
|
||||||
|
${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-amd64 \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-arm64
|
||||||
|
docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest
|
||||||
|
|
||||||
|
- name: "11"
|
||||||
|
run: |
|
||||||
|
docker manifest create \
|
||||||
|
${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11 \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-amd64 \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11-arm64
|
||||||
|
docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11
|
||||||
|
|
||||||
|
- name: "11.0.1"
|
||||||
|
run: |
|
||||||
|
docker manifest create \
|
||||||
|
${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1 \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-amd64 \
|
||||||
|
--amend ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1-arm64
|
||||||
|
docker manifest push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:11.0.1
|
||||||
@@ -1,21 +1,33 @@
|
|||||||
---
|
---
|
||||||
name: Vulnerability Scan
|
name: Vulnerability Scan
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: docker.asperti.com
|
||||||
|
REPOSITORY: paspo/glpi
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 14 * * *"
|
- cron: "0 14 * * *"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
workflow_run:
|
||||||
|
workflows: [build_and_publish.yaml]
|
||||||
|
types: [completed]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
scan:
|
scan:
|
||||||
name: Daily Vulnerability Scan
|
name: Daily Vulnerability Scan
|
||||||
runs-on: ubuntu-latest
|
runs-on:
|
||||||
|
labels: [ubuntu-latest, "arch-${{ matrix.arch }}"]
|
||||||
container:
|
container:
|
||||||
image: catthehacker/ubuntu:act-latest
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: [amd64, arm64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
run: docker pull docker.asperti.com/paspo/glpi:latest
|
run: docker pull ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest
|
||||||
|
|
||||||
- name: Setup trivy
|
- name: Setup trivy
|
||||||
run: |
|
run: |
|
||||||
@@ -32,7 +44,7 @@ jobs:
|
|||||||
- name: Run Trivy vulnerability scanner
|
- name: Run Trivy vulnerability scanner
|
||||||
id: scan
|
id: scan
|
||||||
run: |
|
run: |
|
||||||
trivy --server ${{ secrets.TRIVY_SERVER }} --token ${{ secrets.TRIVY_TOKEN }} image --format json docker.asperti.com/paspo/glpi:latest > trivy-results.json
|
trivy --server ${{ secrets.TRIVY_SERVER }} --token ${{ secrets.TRIVY_TOKEN }} image --format json ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest > trivy-results.json
|
||||||
|
|
||||||
# if some vulnerability is found, we fail
|
# if some vulnerability is found, we fail
|
||||||
- name: check output
|
- name: check output
|
||||||
@@ -49,4 +61,4 @@ jobs:
|
|||||||
token: ${{ secrets.TELEGRAM_TOKEN }}
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
||||||
format: markdown
|
format: markdown
|
||||||
message: |
|
message: |
|
||||||
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}`
|
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest`
|
||||||
|
|||||||
@@ -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.19" --build-arg "GLPI_VERSION=10.0.11" .
|
docker build -t docker.asperti.com/paspo/glpi --build-arg "ALPINE_VERSION=3.22" --build-arg "GLPI_VERSION=11.0.1" .
|
||||||
```
|
```
|
||||||
|
|
||||||
## run
|
## run
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: mariadb:10
|
image: mariadb:11
|
||||||
volumes:
|
volumes:
|
||||||
- ./db:/var/lib/mysql
|
- ./db:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
@@ -14,18 +12,37 @@ services:
|
|||||||
logging:
|
logging:
|
||||||
options:
|
options:
|
||||||
max-size: 10m
|
max-size: 10m
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD", "healthcheck.sh", "--connect", "--innodb_initialized" ]
|
||||||
|
start_period: 1m
|
||||||
|
start_interval: 10s
|
||||||
|
interval: 1m
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
logging:
|
logging:
|
||||||
options:
|
options:
|
||||||
max-size: 10m
|
max-size: 10m
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
||||||
|
start_period: 20s
|
||||||
|
interval: 30s
|
||||||
|
retries: 5
|
||||||
|
timeout: 3s
|
||||||
|
|
||||||
glpi:
|
glpi:
|
||||||
build: .
|
build:
|
||||||
|
context: src
|
||||||
|
args:
|
||||||
|
ALPINE_VERSION: 3.22
|
||||||
|
GLPI_VERSION: 11.0.1
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
db:
|
||||||
- redis
|
condition: service_healthy
|
||||||
|
redis:
|
||||||
|
condition: service_healthy
|
||||||
ports:
|
ports:
|
||||||
- 8282:80
|
- 8282:80
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
image: docker.asperti.com/paspo/glpi:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
-
|
|
||||||
image: docker.asperti.com/paspo/glpi:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
-
|
|
||||||
image: docker.asperti.com/paspo/glpi:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64
|
|
||||||
platform:
|
|
||||||
variant: v8
|
|
||||||
architecture: arm64
|
|
||||||
os: linux
|
|
||||||
-
|
|
||||||
image: docker.asperti.com/paspo/glpi:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm
|
|
||||||
platform:
|
|
||||||
variant: v7
|
|
||||||
architecture: arm
|
|
||||||
os: linux
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
ARG ALPINE_VERSION
|
ARG ALPINE_VERSION=3.22
|
||||||
FROM alpine:${ALPINE_VERSION}
|
FROM alpine:${ALPINE_VERSION}
|
||||||
ARG GLPI_VERSION
|
ARG GLPI_VERSION
|
||||||
|
|
||||||
@@ -6,13 +6,16 @@ RUN \
|
|||||||
mkdir -p /logs /config /files /marketplace && \
|
mkdir -p /logs /config /files /marketplace && \
|
||||||
apk -U upgrade && \
|
apk -U upgrade && \
|
||||||
apk add --no-cache curl nginx php83 php83-bz2 php83-ctype php83-curl php83-dom php83-exif \
|
apk add --no-cache curl nginx php83 php83-bz2 php83-ctype php83-curl php83-dom php83-exif \
|
||||||
php83-fileinfo php83-fpm php83-gd php83-iconv php83-intl php83-ldap php83-mysqli \
|
php83-fileinfo php83-fpm php83-gd php83-iconv php83-intl php83-ldap php83-mysqli php83-bcmath \
|
||||||
php83-opcache php83-openssl php83-pecl-apcu php83-pecl-redis php83-phar php83-session \
|
php83-opcache php83-openssl php83-pecl-apcu php83-pecl-redis php83-phar php83-session \
|
||||||
php83-simplexml php83-sodium php83-tokenizer php83-xml php83-zip php83-xmlreader php83-xmlwriter && \
|
php83-simplexml php83-sodium php83-tokenizer php83-xml php83-zip php83-xmlreader php83-xmlwriter && \
|
||||||
wget -O /usr/local/bin/composer https://getcomposer.org/download/2.5.8/composer.phar && \
|
wget -O /usr/local/bin/composer https://getcomposer.org/download/2.5.8/composer.phar && \
|
||||||
chmod +x /usr/local/bin/composer && \
|
chmod +x /usr/local/bin/composer && \
|
||||||
wget -O - https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/glpi-${GLPI_VERSION}.tgz | tar xz -C /var/www
|
wget -O - https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/glpi-${GLPI_VERSION}.tgz | tar xz -C /var/www
|
||||||
|
|
||||||
|
# GLPI 10.x will work only with PHP up to 8.3.
|
||||||
|
# do not trust README.md from glpi github (it says it works with 8.4, but it dies if >=8.4.0)
|
||||||
|
|
||||||
# this are needed if you want to manually install GLPI from git
|
# this are needed if you want to manually install GLPI from git
|
||||||
# RUN \
|
# RUN \
|
||||||
# apk add patch npm gettext
|
# apk add patch npm gettext
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
INSTALL_OK=${INSTALL_OK:-0}
|
||||||
|
|
||||||
chown -R nginx:www-data /logs /config /files /marketplace
|
chown -R nginx:www-data /logs /config /files /marketplace
|
||||||
chmod -R a-x,a=rX,ug+w /logs /config /files /marketplace
|
chmod -R a-x,a=rX,ug+w /logs /config /files /marketplace
|
||||||
|
|
||||||
if [ "$INSTALL_OK" = "1" ] ; then
|
if [ "${INSTALL_OK}" = "1" ] ; then
|
||||||
if [ -f /var/www/glpi/install/install.php ] ; then
|
if [ -f /var/www/glpi/install/install.php ] ; then
|
||||||
rm /var/www/glpi/install/install.php
|
rm /var/www/glpi/install/install.php
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user