mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-06-03 09:57:35 +00:00
Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6327cd41a5 | |||
| 3b4c1e3328 | |||
| 24caec537e | |||
| b1167e9ae5 | |||
| ebafffef86 | |||
| 69ae5be832 | |||
| 20c72b0185 | |||
| e87fbe21a1 | |||
| 48acb4f2cb | |||
| 5466f4c911 | |||
| 8876a035ef | |||
| 499d5b0634 | |||
| 2b5f0a100d | |||
| efe165eeea | |||
| 8da2047a23 | |||
| c2cfa3610d | |||
| f78acfcaf3 | |||
| b5e20d02a4 | |||
| 879dd4dcf4 | |||
| b6eabe53c8 | |||
| d24a8c50cf | |||
| 3f0024d06a |
@@ -3,6 +3,10 @@ name: Bug report
|
||||
about: Create a report to help us improve
|
||||
|
||||
---
|
||||
# DEPRECATION NOTICE
|
||||
|
||||
This image is deprecated. We will not offer support for this image and it will not be updated.
|
||||
The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated.
|
||||
[linuxserverurl]: https://linuxserver.io
|
||||
[][linuxserverurl]
|
||||
|
||||
|
||||
@@ -3,6 +3,10 @@ name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
|
||||
---
|
||||
# DEPRECATION NOTICE
|
||||
|
||||
This image is deprecated. We will not offer support for this image and it will not be updated.
|
||||
The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated.
|
||||
[linuxserverurl]: https://linuxserver.io
|
||||
[][linuxserverurl]
|
||||
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
# DEPRECATION NOTICE
|
||||
|
||||
This image is deprecated. We will not offer support for this image and it will not be updated.
|
||||
The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated.
|
||||
<!--- Provide a general summary of your changes in the Title above -->
|
||||
|
||||
[linuxserverurl]: https://linuxserver.io
|
||||
|
||||
@@ -8,6 +8,6 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/first-interaction@v1
|
||||
with:
|
||||
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!'
|
||||
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/PULL_REQUEST_TEMPLATE.md)!'
|
||||
issue-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-nextcloud/blob/php8/README.md) may have additional information. Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!'
|
||||
pr-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-nextcloud/blob/php8/README.md) may have additional information. Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-nextcloud/blob/php8/.github/PULL_REQUEST_TEMPLATE.md)!'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
Vendored
+8
-2
@@ -56,7 +56,7 @@ pipeline {
|
||||
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
|
||||
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
|
||||
env.PULL_REQUEST = env.CHANGE_ID
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/etc/cont-init.d/99-deprecation'
|
||||
}
|
||||
script{
|
||||
env.LS_RELEASE_NUMBER = sh(
|
||||
@@ -312,6 +312,7 @@ pipeline {
|
||||
cd ${TEMPDIR}/docker-${CONTAINER_NAME}
|
||||
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
|
||||
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE
|
||||
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/root/etc/cont-init.d
|
||||
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || :
|
||||
cd ${TEMPDIR}/repo/${LS_REPO}/
|
||||
if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then
|
||||
@@ -319,6 +320,7 @@ pipeline {
|
||||
git add .gitignore
|
||||
fi
|
||||
git add ${TEMPLATED_FILES}
|
||||
git rm ${TEMPDIR}/repo/${LS_REPO}/.github/workflows/{external_trigger,external_trigger_scheduler,package_trigger,package_trigger_scheduler}.yml || :
|
||||
git commit -m 'Bot Updating Templated Files'
|
||||
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
|
||||
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
|
||||
@@ -342,6 +344,10 @@ pipeline {
|
||||
fi
|
||||
if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then
|
||||
cd ${TEMPDIR}/unraid/templates/
|
||||
if ! grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then
|
||||
echo "${CONTAINER_NAME}" >> ${TEMPDIR}/unraid/templates/unraid/ignore.list
|
||||
git add unraid/ignore.list
|
||||
fi
|
||||
if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then
|
||||
echo "Image is on the ignore list, marking Unraid template as deprecated"
|
||||
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/
|
||||
@@ -710,7 +716,7 @@ pipeline {
|
||||
-e DO_REGION="ams3" \
|
||||
-e DO_BUCKET="lsio-ci" \
|
||||
-t ghcr.io/linuxserver/ci:latest \
|
||||
python /ci/ci.py'''
|
||||
python3 test_build.py'''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,6 +27,10 @@ Find us at:
|
||||
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
|
||||
* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
|
||||
|
||||
# DEPRECATION NOTICE
|
||||
|
||||
This image is deprecated. We will not offer support for this image and it will not be updated.
|
||||
The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated.
|
||||
# [linuxserver/nextcloud](https://github.com/linuxserver/docker-nextcloud)
|
||||
|
||||
[](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fnextcloud)
|
||||
@@ -248,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||
|
||||
## Versions
|
||||
|
||||
* **25.10.22:** - Deprecate `php8` tag. `latest` tag now uses php8.
|
||||
* **05.06.22:** - Bring `php8` tag in line with `latest`.
|
||||
* **24.06.21:** - Rebase to alpine 3.14.
|
||||
* **01.04.21:** - Fix crontab during upgrade from php7.
|
||||
|
||||
+64
-64
@@ -12,15 +12,15 @@ bash-5.1.16-r0
|
||||
brotli-libs-1.0.9-r5
|
||||
busybox-1.33.1-r8
|
||||
c-client-2007f-r11
|
||||
ca-certificates-20211220-r0
|
||||
ca-certificates-bundle-20211220-r0
|
||||
ca-certificates-20220614-r0
|
||||
ca-certificates-bundle-20220614-r0
|
||||
cairo-1.16.0-r5
|
||||
cairo-gobject-1.16.0-r5
|
||||
coreutils-8.32-r2
|
||||
cups-libs-2.3.3-r3
|
||||
curl-7.79.1-r2
|
||||
dbus-libs-1.12.20-r2
|
||||
expat-2.4.7-r0
|
||||
curl-7.79.1-r3
|
||||
dbus-libs-1.12.24-r0
|
||||
expat-2.5.0-r0
|
||||
ffmpeg-4.4.1-r0
|
||||
ffmpeg-libs-4.4.1-r0
|
||||
fontconfig-2.13.1-r4
|
||||
@@ -29,11 +29,11 @@ fribidi-1.0.10-r0
|
||||
gdbm-1.19-r0
|
||||
gdk-pixbuf-2.42.6-r1
|
||||
ghostscript-9.54.0-r1
|
||||
git-2.32.3-r0
|
||||
git-2.32.4-r0
|
||||
glib-2.68.3-r0
|
||||
gmp-6.2.1-r1
|
||||
gnu-libiconv-1.16-r0
|
||||
gnutls-3.7.1-r0
|
||||
gnutls-3.7.1-r1
|
||||
graphite2-1.3.14-r0
|
||||
harfbuzz-2.8.1-r0
|
||||
icu-libs-67.1-r2
|
||||
@@ -43,7 +43,7 @@ jansson-2.13.1-r0
|
||||
jbig2dec-0.19-r0
|
||||
lame-3.100-r0
|
||||
lcms2-2.12-r1
|
||||
ldb-2.3.3-r0
|
||||
ldb-2.3.4-r0
|
||||
libacl-2.2.53-r0
|
||||
libarchive-3.5.3-r0
|
||||
libass-0.15.1-r0
|
||||
@@ -53,8 +53,8 @@ libbsd-0.11.3-r0
|
||||
libbz2-1.0.8-r1
|
||||
libc-utils-0.7.2-r3
|
||||
libcap-2.50-r0
|
||||
libcrypto1.1-1.1.1q-r0
|
||||
libcurl-7.79.1-r2
|
||||
libcrypto1.1-1.1.1s-r0
|
||||
libcurl-7.79.1-r3
|
||||
libdav1d-0.9.0-r0
|
||||
libde265-1.0.8-r2
|
||||
libdrm-2.4.106-r0
|
||||
@@ -76,7 +76,7 @@ libmount-2.37.4-r0
|
||||
libogg-1.3.5-r0
|
||||
libpciaccess-0.16-r0
|
||||
libpng-1.6.37-r1
|
||||
libpq-13.7-r0
|
||||
libpq-13.8-r0
|
||||
libproc-3.3.17-r0
|
||||
libressl3.3-libcrypto-3.3.6-r0
|
||||
libressl3.3-libssl-3.3.6-r0
|
||||
@@ -84,11 +84,11 @@ libretls-3.3.3p1-r3
|
||||
librsvg-2.50.4-r1
|
||||
libsasl-2.1.28-r0
|
||||
libsm-1.2.3-r0
|
||||
libsmbclient-4.14.12-r0
|
||||
libsmbclient-4.14.14-r0
|
||||
libsodium-1.0.18-r0
|
||||
libsrt-1.4.2-r0
|
||||
libssh-0.9.6-r0
|
||||
libssl1.1-1.1.1q-r0
|
||||
libssl1.1-1.1.1s-r0
|
||||
libstdc++-10.3.1_git20210424-r2
|
||||
libtasn1-4.17.0-r0
|
||||
libtheora-1.1.1-r16
|
||||
@@ -98,23 +98,23 @@ libva-2.11.0-r0
|
||||
libvdpau-1.4-r0
|
||||
libvorbis-1.3.7-r0
|
||||
libvpx-1.10.0-r0
|
||||
libwbclient-4.14.12-r0
|
||||
libwbclient-4.14.14-r0
|
||||
libwebp-1.2.0-r2
|
||||
libx11-1.7.2-r0
|
||||
libx11-1.7.3.1-r0
|
||||
libxau-1.0.9-r0
|
||||
libxcb-1.14-r2
|
||||
libxdmcp-1.1.3-r0
|
||||
libxext-1.3.4-r0
|
||||
libxfixes-6.0.0-r0
|
||||
libxft-2.3.3-r0
|
||||
libxml2-2.9.14-r0
|
||||
libxml2-2.9.14-r2
|
||||
libxpm-3.5.13-r0
|
||||
libxrender-0.9.10-r3
|
||||
libxt-1.2.1-r0
|
||||
libzip-1.7.3-r2
|
||||
linux-pam-1.5.1-r1
|
||||
lmdb-0.9.29-r0
|
||||
logrotate-3.18.1-r3
|
||||
logrotate-3.18.1-r4
|
||||
lz4-libs-1.9.3-r1
|
||||
musl-1.2.2-r3
|
||||
musl-utils-1.2.2-r3
|
||||
@@ -125,66 +125,66 @@ nettle-3.7.3-r0
|
||||
nghttp2-libs-1.43.0-r0
|
||||
nginx-1.20.2-r1
|
||||
oniguruma-6.9.7.1-r0
|
||||
openssl-1.1.1q-r0
|
||||
openssl-1.1.1s-r0
|
||||
opus-1.3.1-r1
|
||||
p11-kit-0.23.22-r0
|
||||
pango-1.48.5-r0
|
||||
pcre-8.44-r0
|
||||
pcre2-10.36-r1
|
||||
php8-8.0.13-r0
|
||||
php8-bcmath-8.0.13-r0
|
||||
php8-bz2-8.0.13-r0
|
||||
php8-common-8.0.13-r0
|
||||
php8-ctype-8.0.13-r0
|
||||
php8-curl-8.0.13-r0
|
||||
php8-dom-8.0.13-r0
|
||||
php8-exif-8.0.13-r0
|
||||
php8-fileinfo-8.0.13-r0
|
||||
php8-fpm-8.0.13-r0
|
||||
php8-ftp-8.0.13-r0
|
||||
php8-gd-8.0.13-r0
|
||||
php8-gmp-8.0.13-r0
|
||||
php8-iconv-8.0.13-r0
|
||||
php8-imap-8.0.13-r0
|
||||
php8-intl-8.0.13-r0
|
||||
php8-ldap-8.0.13-r0
|
||||
php8-mbstring-8.0.13-r0
|
||||
php8-mysqlnd-8.0.13-r0
|
||||
php8-opcache-8.0.13-r0
|
||||
php8-openssl-8.0.13-r0
|
||||
php8-pcntl-8.0.13-r0
|
||||
php8-pdo-8.0.13-r0
|
||||
php8-pdo_mysql-8.0.13-r0
|
||||
php8-pdo_pgsql-8.0.13-r0
|
||||
php8-pdo_sqlite-8.0.13-r0
|
||||
php8-8.0.24-r0
|
||||
php8-bcmath-8.0.24-r0
|
||||
php8-bz2-8.0.24-r0
|
||||
php8-common-8.0.24-r0
|
||||
php8-ctype-8.0.24-r0
|
||||
php8-curl-8.0.24-r0
|
||||
php8-dom-8.0.24-r0
|
||||
php8-exif-8.0.24-r0
|
||||
php8-fileinfo-8.0.24-r0
|
||||
php8-fpm-8.0.24-r0
|
||||
php8-ftp-8.0.24-r0
|
||||
php8-gd-8.0.24-r0
|
||||
php8-gmp-8.0.24-r0
|
||||
php8-iconv-8.0.24-r0
|
||||
php8-imap-8.0.24-r0
|
||||
php8-intl-8.0.24-r0
|
||||
php8-ldap-8.0.24-r0
|
||||
php8-mbstring-8.0.24-r0
|
||||
php8-mysqlnd-8.0.24-r0
|
||||
php8-opcache-8.0.24-r0
|
||||
php8-openssl-8.0.24-r0
|
||||
php8-pcntl-8.0.24-r0
|
||||
php8-pdo-8.0.24-r0
|
||||
php8-pdo_mysql-8.0.24-r0
|
||||
php8-pdo_pgsql-8.0.24-r0
|
||||
php8-pdo_sqlite-8.0.24-r0
|
||||
php8-pecl-apcu-5.1.21-r0
|
||||
php8-pecl-igbinary-3.2.6-r0
|
||||
php8-pecl-imagick-3.5.0-r1
|
||||
php8-pecl-mcrypt-1.0.4-r0
|
||||
php8-pecl-memcached-3.1.5-r1
|
||||
php8-pecl-redis-5.3.4-r0
|
||||
php8-pgsql-8.0.13-r0
|
||||
php8-phar-8.0.13-r0
|
||||
php8-posix-8.0.13-r0
|
||||
php8-session-8.0.13-r0
|
||||
php8-simplexml-8.0.13-r0
|
||||
php8-sodium-8.0.13-r0
|
||||
php8-sqlite3-8.0.13-r0
|
||||
php8-xml-8.0.13-r0
|
||||
php8-xmlreader-8.0.13-r0
|
||||
php8-xmlwriter-8.0.13-r0
|
||||
php8-zip-8.0.13-r0
|
||||
php8-pgsql-8.0.24-r0
|
||||
php8-phar-8.0.24-r0
|
||||
php8-posix-8.0.24-r0
|
||||
php8-session-8.0.24-r0
|
||||
php8-simplexml-8.0.24-r0
|
||||
php8-sodium-8.0.24-r0
|
||||
php8-sqlite3-8.0.24-r0
|
||||
php8-xml-8.0.24-r0
|
||||
php8-xmlreader-8.0.24-r0
|
||||
php8-xmlwriter-8.0.24-r0
|
||||
php8-zip-8.0.24-r0
|
||||
pixman-0.40.0-r2
|
||||
pkgconf-1.7.4-r0
|
||||
popt-1.18-r0
|
||||
procps-3.3.17-r0
|
||||
readline-8.1.0-r0
|
||||
s6-ipcserver-2.10.0.3-r0
|
||||
samba-client-4.14.12-r0
|
||||
samba-client-libs-4.14.12-r0
|
||||
samba-common-4.14.12-r0
|
||||
samba-libs-4.14.12-r0
|
||||
samba-util-libs-4.14.12-r0
|
||||
samba-client-4.14.14-r0
|
||||
samba-client-libs-4.14.14-r0
|
||||
samba-common-4.14.14-r0
|
||||
samba-libs-4.14.14-r0
|
||||
samba-util-libs-4.14.14-r0
|
||||
scanelf-1.3.2-r0
|
||||
sdl2-2.0.14-r1
|
||||
shadow-4.8.1-r0
|
||||
@@ -193,13 +193,13 @@ skalibs-2.10.0.3-r0
|
||||
soxr-0.1.3-r2
|
||||
sqlite-libs-3.35.5-r0
|
||||
ssl_client-1.33.1-r8
|
||||
sudo-1.9.7_p1-r1
|
||||
sudo-1.9.12-r1
|
||||
talloc-2.3.2-r1
|
||||
tar-1.34-r0
|
||||
tdb-libs-1.4.3-r1
|
||||
tevent-0.10.2-r1
|
||||
tiff-4.3.0-r0
|
||||
tzdata-2022a-r0
|
||||
tiff-4.4.0-r0
|
||||
tzdata-2022c-r0
|
||||
unzip-6.0-r9
|
||||
utmps-0.1.0.2-r0
|
||||
v4l-utils-libs-1.20.0-r0
|
||||
@@ -211,5 +211,5 @@ x265-libs-3.4-r0
|
||||
xvidcore-1.3.7-r1
|
||||
xz-5.2.5-r1
|
||||
xz-libs-5.2.5-r1
|
||||
zlib-1.2.12-r1
|
||||
zlib-1.2.12-r3
|
||||
zstd-libs-1.4.9-r1
|
||||
|
||||
@@ -11,6 +11,10 @@ project_blurb: |
|
||||
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
||||
project_blurb_optional_extras_enabled: false
|
||||
|
||||
# deprecation information
|
||||
project_deprecation_status: true
|
||||
project_deprecation_message: "The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated."
|
||||
|
||||
# supported architectures
|
||||
available_architectures:
|
||||
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||
@@ -75,6 +79,7 @@ app_setup_block: |
|
||||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "25.10.22:", desc: "Deprecate `php8` tag. `latest` tag now uses php8." }
|
||||
- { date: "05.06.22:", desc: "Bring `php8` tag in line with `latest`." }
|
||||
- { date: "24.06.21:", desc: "Rebase to alpine 3.14." }
|
||||
- { date: "01.04.21:", desc: "Fix crontab during upgrade from php7." }
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
echo '
|
||||
******************************************************
|
||||
******************************************************
|
||||
* *
|
||||
* *
|
||||
* This image is deprecated. *
|
||||
* We will not offer support for this image *
|
||||
* and it will not be updated. *
|
||||
* *
|
||||
* *
|
||||
******************************************************
|
||||
******************************************************
|
||||
|
||||
The latest tag (master branch) now uses php8. The php8 tag/branch will not be updated.
|
||||
|
||||
******************************************************
|
||||
******************************************************'
|
||||
Reference in New Issue
Block a user