From 2f61266a3abeab16fba5c33ad734fd102a9e03d8 Mon Sep 17 00:00:00 2001 From: simplerisk-service Date: Fri, 21 Nov 2025 04:35:41 +0000 Subject: [PATCH] SimpleRisk 20251118-001 Release (jenkins-simplerisk-code-development-testing-484) --- .github/workflows/push-to-dockerhub.yml | 8 ++++---- .github/workflows/push-to-gh-pkgs.yml | 8 ++++---- simplerisk-minimal/Dockerfile | 4 ++-- simplerisk-minimal/stack.yml | 6 +++--- simplerisk/Dockerfile | 6 +++--- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/push-to-dockerhub.yml b/.github/workflows/push-to-dockerhub.yml index fd47709..dd995a4 100644 --- a/.github/workflows/push-to-dockerhub.yml +++ b/.github/workflows/push-to-dockerhub.yml @@ -20,7 +20,7 @@ jobs: context_path: "simplerisk" dockerfile_path: "simplerisk/Dockerfile" image_name: "simplerisk/simplerisk" - version: "20250828-001" + version: "20251118-001" os_version: "jammy" build_args: "ubuntu_version_code=jammy" secrets: inherit @@ -31,7 +31,7 @@ jobs: context_path: "simplerisk" dockerfile_path: "simplerisk/Dockerfile" image_name: "simplerisk/simplerisk" - version: "20250828-001" + version: "20251118-001" os_version: "noble" main_image: true build_args: "ubuntu_version_code=noble" @@ -43,7 +43,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk/simplerisk-minimal" - version: "20250828-001" + version: "20251118-001" os_version: "php81" build_args: "php_version=8.1" secrets: inherit @@ -54,7 +54,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk/simplerisk-minimal" - version: "20250828-001" + version: "20251118-001" os_version: "php83" main_image: true build_args: "php_version=8.3" diff --git a/.github/workflows/push-to-gh-pkgs.yml b/.github/workflows/push-to-gh-pkgs.yml index 2ad9714..c545dd5 100644 --- a/.github/workflows/push-to-gh-pkgs.yml +++ b/.github/workflows/push-to-gh-pkgs.yml @@ -20,7 +20,7 @@ jobs: context_path: "simplerisk" dockerfile_path: "simplerisk/Dockerfile" image_name: "simplerisk" - version: "20250828-001" + version: "20251118-001" os_version: "jammy" build_args: "ubuntu_version_code=jammy" secrets: inherit @@ -31,7 +31,7 @@ jobs: context_path: "simplerisk" dockerfile_path: "simplerisk/Dockerfile" image_name: "simplerisk" - version: "20250828-001" + version: "20251118-001" os_version: "noble" main_image: true build_args: "ubuntu_version_code=noble" @@ -43,7 +43,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk-minimal" - version: "20250828-001" + version: "20251118-001" os_version: "php81" build_args: "php_version=8.1" secrets: inherit @@ -54,7 +54,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk-minimal" - version: "20250828-001" + version: "20251118-001" os_version: "php83" main_image: true build_args: "php_version=8.3" diff --git a/simplerisk-minimal/Dockerfile b/simplerisk-minimal/Dockerfile index 2627e79..778a638 100644 --- a/simplerisk-minimal/Dockerfile +++ b/simplerisk-minimal/Dockerfile @@ -6,13 +6,13 @@ FROM alpine/curl:8.12.1 AS downloader SHELL [ "/bin/ash", "-eo", "pipefail", "-c" ] RUN mkdir -p /var/www && \ - curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20250828-001.tgz | tar xz -C /var/www + curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20251118-001.tgz | tar xz -C /var/www FROM php:${php_version}-apache LABEL maintainer="SimpleRisk " -ENV version=20250828-001 +ENV version=20251118-001 WORKDIR /var/www diff --git a/simplerisk-minimal/stack.yml b/simplerisk-minimal/stack.yml index 31825ea..16f78ee 100644 --- a/simplerisk-minimal/stack.yml +++ b/simplerisk-minimal/stack.yml @@ -6,9 +6,9 @@ services: simplerisk: environment: - DB_SETUP=automatic - - DB_SETUP_PASS=rs8MA7EMhRR6X3QJG4Enr + - DB_SETUP_PASS=y5KFDa2w8xB3gv4WOOYGn - SIMPLERISK_DB_HOSTNAME=mysql - image: simplerisk/simplerisk-minimal:20250828-001 + image: simplerisk/simplerisk-minimal:20251118-001 ports: - "80:80" - "443:443" @@ -16,7 +16,7 @@ services: mysql: command: mysqld --sql_mode="NO_ENGINE_SUBSTITUTION" environment: - - MYSQL_ROOT_PASSWORD=rs8MA7EMhRR6X3QJG4Enr + - MYSQL_ROOT_PASSWORD=y5KFDa2w8xB3gv4WOOYGn image: mysql:8.0 smtp: diff --git a/simplerisk/Dockerfile b/simplerisk/Dockerfile index e2afabd..c032b83 100644 --- a/simplerisk/Dockerfile +++ b/simplerisk/Dockerfile @@ -8,13 +8,13 @@ ARG DB_LANG=en SHELL [ "/bin/ash", "-eo", "pipefail", "-c" ] RUN mkdir -p /var/www && \ - curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20250828-001.tgz | tar xz -C /var/www && \ - curl -sL "https://github.com/simplerisk/database/raw/master/simplerisk-$DB_LANG-20250828-001.sql" > /simplerisk.sql + curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20251118-001.tgz | tar xz -C /var/www && \ + curl -sL "https://github.com/simplerisk/database/raw/master/simplerisk-$DB_LANG-20251118-001.sql" > /simplerisk.sql # Using Ubuntu image FROM ubuntu:${ubuntu_version_code} -ENV version=20250828-001 +ENV version=20251118-001 # Maintained by SimpleRisk LABEL maintainer="Simplerisk "