From 7ba10253a628ccf5384544bb6cb7ad76ba7e6125 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Mon, 29 Jun 2026 16:44:39 +0200 Subject: [PATCH] feat(server): add 11.0.0-rc1 image from GitHub release tarball MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the 11.0.0-prealpha image (rolling daily-master) with 11.0.0-rc1, built from the pinned GitHub release tarball instead of the download server: https://github.com/owncloud/core/releases/download/v11.0.0-rc1/owncloud-complete-20260629.tar.bz2 (sha256 a70b060ab30d93ae4c21eea49051684db0cc5c293b70d444cc4591f9c620fb43) Same base v24.04 / PHP 8.3. Published version-only tag (no latest/floating tags) as it is a pre-release. .drone.star (legacy CI) left untouched. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com> --- .github/workflows/main.yml | 6 +++--- CHANGELOG.md | 5 +++++ README.md | 4 ++-- v24.04/{11.0.0-prealpha => 11.0.0-rc1}/.trivyignore | 0 4 files changed, 10 insertions(+), 5 deletions(-) rename v24.04/{11.0.0-prealpha => 11.0.0-rc1}/.trivyignore (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 500a125..2ea0878 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,10 +49,10 @@ jobs: 10 latest smoke-version-jq: ".versionstring" - - version: 11.0.0-prealpha - tarball: https://download.owncloud.com/server/daily/owncloud-complete-daily-master.tar.bz2 + - version: 11.0.0-rc1 + tarball: https://github.com/owncloud/core/releases/download/v11.0.0-rc1/owncloud-complete-20260629.tar.bz2 base: v24.04 - trivy-ignore: v24.04/11.0.0-prealpha/.trivyignore + trivy-ignore: v24.04/11.0.0-rc1/.trivyignore smoke-version-jq: "" update-docker-hub-description: diff --git a/CHANGELOG.md b/CHANGELOG.md index b81b5ef..9385661 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2026-06-29 + +* Changed + * Replace 11.0.0-prealpha with 11.0.0-rc1 built from the GitHub release tarball + ## 2026-06-12 * Added diff --git a/README.md b/README.md index cdb420a..85f0c5d 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ ownCloud is an open-source file sync, share and content collaboration software t ## Docker Tags and respective Dockerfile links - [`10.16.3`, `10.16`, `10`, `latest`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.16.3` -- [`11.0.0-prealpha`](https://github.com/owncloud-docker/server/blob/master/v24.04/Dockerfile.multiarch) available as `owncloud/server:11.0.0-prealpha` +- [`11.0.0-rc1`](https://github.com/owncloud-docker/server/blob/master/v24.04/Dockerfile.multiarch) available as `owncloud/server:11.0.0-rc1` ## Default volumes @@ -43,7 +43,7 @@ ownCloud is an open-source file sync, share and content collaboration software t ## Running occ commands -Starting with `11.0.0-prealpha`, the image supports running any `occ` command +Starting with `11.0.0-rc1`, the image supports running any `occ` command with full initialization (database, config, etc.) but without starting Apache, by using the `occ` subcommand in `docker-compose.yml`: diff --git a/v24.04/11.0.0-prealpha/.trivyignore b/v24.04/11.0.0-rc1/.trivyignore similarity index 100% rename from v24.04/11.0.0-prealpha/.trivyignore rename to v24.04/11.0.0-rc1/.trivyignore