diff --git a/.github/workflows/push-to-dockerhub.yml b/.github/workflows/push-to-dockerhub.yml index ef95a78..c0cf8db 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: "20260519-001" + version: "20260709-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: "20260519-001" + version: "20260709-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: "20260519-001" + version: "20260709-001" os_version: "php83" build_args: "php_version=8.3" platforms: linux/amd64,linux/arm64 @@ -55,7 +55,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk/simplerisk-minimal" - version: "20260519-001" + version: "20260709-001" os_version: "php84" main_image: true build_args: "php_version=8.4" diff --git a/.github/workflows/push-to-gh-pkgs.yml b/.github/workflows/push-to-gh-pkgs.yml index 63e5a7f..e313fe0 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: "20260519-001" + version: "20260709-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: "20260519-001" + version: "20260709-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: "20260519-001" + version: "20260709-001" os_version: "php83" build_args: "php_version=8.3" secrets: inherit @@ -54,7 +54,7 @@ jobs: context_path: "simplerisk-minimal" dockerfile_path: "simplerisk-minimal/Dockerfile" image_name: "simplerisk-minimal" - version: "20260519-001" + version: "20260709-001" os_version: "php84" main_image: true build_args: "php_version=8.4" diff --git a/simplerisk-minimal/Dockerfile b/simplerisk-minimal/Dockerfile index b62dd3c..aa884ca 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-20260519-001.tgz | tar xz -C /var/www + curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20260709-001.tgz | tar xz -C /var/www FROM php:${php_version}-apache LABEL maintainer="SimpleRisk " -ENV version=20260519-001 +ENV version=20260709-001 WORKDIR /var/www diff --git a/simplerisk-minimal/stack.yml b/simplerisk-minimal/stack.yml index d3ea61e..f067ebc 100644 --- a/simplerisk-minimal/stack.yml +++ b/simplerisk-minimal/stack.yml @@ -8,7 +8,7 @@ services: - DB_SETUP=automatic - DB_SETUP_PASS=simplerisk_setup - SIMPLERISK_DB_HOSTNAME=mysql - image: simplerisk/simplerisk-minimal:20260519-001 + image: simplerisk/simplerisk-minimal:20260709-001 ports: - "80:80" - "443:443" diff --git a/simplerisk/Dockerfile b/simplerisk/Dockerfile index 300327a..38f81c7 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-20260519-001.tgz | tar xz -C /var/www && \ - curl -sL "https://github.com/simplerisk/database/raw/master/simplerisk-$DB_LANG-20260519-001.sql" > /simplerisk.sql + curl -sL https://simplerisk-downloads.s3.amazonaws.com/public/bundles/simplerisk-20260709-001.tgz | tar xz -C /var/www && \ + curl -sL "https://github.com/simplerisk/database/raw/master/simplerisk-$DB_LANG-20260709-001.sql" > /simplerisk.sql # Using Ubuntu image FROM ubuntu:${ubuntu_version_code} -ENV version=20260519-001 +ENV version=20260709-001 # Maintained by SimpleRisk LABEL maintainer="Simplerisk "