mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-06-03 09:57:35 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fc9aa4801c | |||
| 75911cd39e | |||
| 8a9da03e3f | |||
| 0b3cc76eba | |||
| 5d67441e57 |
@@ -6,7 +6,7 @@
|
||||
* Read, and fill the Pull Request template
|
||||
* If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
|
||||
* If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message
|
||||
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn)
|
||||
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord)
|
||||
|
||||
## Common files
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Discord chat support
|
||||
url: https://discord.gg/YWrKVTn
|
||||
url: https://linuxserver.io/discord
|
||||
about: Realtime support / chat with the community and the team.
|
||||
|
||||
- name: Discourse discussion forum
|
||||
|
||||
@@ -15,7 +15,10 @@ jobs:
|
||||
SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }}
|
||||
run: |
|
||||
printf "# External trigger for docker-nextcloud\n\n" >> $GITHUB_STEP_SUMMARY
|
||||
if grep -q "^nextcloud_develop" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
if grep -q "^nextcloud_develop_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`nextcloud_develop_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY
|
||||
elif grep -q "^nextcloud_develop" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`nextcloud_develop\`; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||
exit 0
|
||||
@@ -25,6 +28,11 @@ jobs:
|
||||
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
|
||||
EXT_RELEASE=$(curl -u ${{ secrets.CR_USER }}:${{ secrets.CR_PAT }} -sX GET https://api.github.com/repos/nextcloud/server/releases | jq -r '.[] | select(.prerelease == true) | .tag_name' | sed 's|^v||g' | sort -rV | head -1)
|
||||
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
|
||||
if grep -q "^nextcloud_develop_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` matches current external release; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||
exit 0
|
||||
fi
|
||||
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
Vendored
+26
-7
@@ -56,11 +56,21 @@ pipeline {
|
||||
steps{
|
||||
echo "Running on node: ${NODE_NAME}"
|
||||
sh '''#! /bin/bash
|
||||
containers=$(docker ps -aq)
|
||||
echo "Pruning builder"
|
||||
docker builder prune -f --builder container || :
|
||||
containers=$(docker ps -q)
|
||||
if [[ -n "${containers}" ]]; then
|
||||
docker stop ${containers}
|
||||
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit')
|
||||
for container in ${containers}; do
|
||||
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
|
||||
echo "skipping buildx container in docker stop"
|
||||
else
|
||||
echo "Stopping container ${container}"
|
||||
docker stop ${container}
|
||||
fi
|
||||
done
|
||||
fi
|
||||
docker system prune -af --volumes || : '''
|
||||
docker system prune -f --volumes || : '''
|
||||
script{
|
||||
env.EXIT_STATUS = ''
|
||||
env.LS_RELEASE = sh(
|
||||
@@ -1152,12 +1162,21 @@ EOF
|
||||
}
|
||||
cleanup {
|
||||
sh '''#! /bin/bash
|
||||
echo "Performing docker system prune!!"
|
||||
containers=$(docker ps -aq)
|
||||
echo "Pruning builder!!"
|
||||
docker builder prune -f --builder container || :
|
||||
containers=$(docker ps -q)
|
||||
if [[ -n "${containers}" ]]; then
|
||||
docker stop ${containers}
|
||||
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit')
|
||||
for container in ${containers}; do
|
||||
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
|
||||
echo "skipping buildx container in docker stop"
|
||||
else
|
||||
echo "Stopping container ${container}"
|
||||
docker stop ${container}
|
||||
fi
|
||||
done
|
||||
fi
|
||||
docker system prune -af --volumes || :
|
||||
docker system prune -f --volumes || :
|
||||
'''
|
||||
cleanWs()
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
[](https://linuxserver.io)
|
||||
|
||||
[](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!")
|
||||
[](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.")
|
||||
[](https://linuxserver.io/discord "realtime support / chat with the community and the team.")
|
||||
[](https://discourse.linuxserver.io "post on our community forum.")
|
||||
[](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.")
|
||||
[](https://github.com/linuxserver "view the source for all of our repositories.")
|
||||
@@ -20,7 +20,7 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r
|
||||
Find us at:
|
||||
|
||||
* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
|
||||
* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
|
||||
* [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team.
|
||||
* [Discourse](https://discourse.linuxserver.io) - post on our community forum.
|
||||
* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
|
||||
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
|
||||
|
||||
+22
-19
@@ -39,7 +39,7 @@ ca-certificates-bundle 20241121-r1 apk
|
||||
catatonit 0.2.0-r0 apk
|
||||
christian-riesen/base32 1.6.0 php-composer
|
||||
cjson 1.7.18-r0 apk
|
||||
composer 2.8.4 binary
|
||||
composer 2.8.5 binary
|
||||
composer/pcre 3.3.1 php-composer
|
||||
composer/semver 3.4.2 php-composer
|
||||
composer/xdebug-handler 3.0.5 php-composer
|
||||
@@ -54,11 +54,12 @@ deepdiver/zipstreamer v2.0.3 php-composer
|
||||
deepdiver1975/tarstreamer v2.1.0 php-composer
|
||||
dnoegel/php-xdg-base-dir v0.1.1 php-composer
|
||||
doctrine/cache 2.2.0 php-composer
|
||||
doctrine/dbal 3.9.1 php-composer
|
||||
doctrine/deprecations 1.1.3 php-composer (+1 duplicate)
|
||||
doctrine/event-manager 1.2.0 php-composer
|
||||
doctrine/dbal 3.9.4 php-composer
|
||||
doctrine/deprecations 1.1.3 php-composer
|
||||
doctrine/deprecations 1.1.4 php-composer
|
||||
doctrine/event-manager 2.0.1 php-composer
|
||||
doctrine/lexer 3.0.1 php-composer
|
||||
egulias/email-validator 4.0.2 php-composer
|
||||
egulias/email-validator 4.0.3 php-composer
|
||||
felixfbecker/advanced-json-rpc v3.2.1 php-composer
|
||||
felixfbecker/language-server-protocol v1.5.2 php-composer
|
||||
ffmpeg 6.1.1-r8 apk
|
||||
@@ -100,7 +101,7 @@ harfbuzz 8.5.0-r0 apk
|
||||
hexogen/kdtree v0.2.6 php-composer
|
||||
hwdata-pci 0.382-r0 apk
|
||||
icewind/searchdav v3.1.0 php-composer
|
||||
icewind/smb v3.5.4 php-composer
|
||||
icewind/smb v3.7.0 php-composer
|
||||
icewind/streams v0.7.7 php-composer (+1 duplicate)
|
||||
icu-data-en 74.2-r0 apk
|
||||
icu-libs 74.2-r0 apk
|
||||
@@ -366,16 +367,17 @@ stecman/symfony-console-completion v0.13.0 php-composer
|
||||
sudo 1.9.15_p5-r0 apk
|
||||
support 3.0.0 npm
|
||||
symfony/console v6.4.11 php-composer
|
||||
symfony/console v6.4.12 php-composer
|
||||
symfony/console v6.4.17 php-composer
|
||||
symfony/css-selector v6.4.3 php-composer
|
||||
symfony/deprecation-contracts v3.5.0 php-composer (+1 duplicate)
|
||||
symfony/deprecation-contracts v3.5.0 php-composer
|
||||
symfony/deprecation-contracts v3.5.1 php-composer
|
||||
symfony/dom-crawler v6.4.4 php-composer
|
||||
symfony/event-dispatcher v6.4.8 php-composer
|
||||
symfony/event-dispatcher-contracts v3.5.0 php-composer
|
||||
symfony/event-dispatcher v6.4.13 php-composer
|
||||
symfony/event-dispatcher-contracts v3.5.1 php-composer
|
||||
symfony/filesystem v6.4.9 php-composer
|
||||
symfony/http-foundation v6.4.12 php-composer
|
||||
symfony/mailer v6.4.12 php-composer
|
||||
symfony/mime v6.4.12 php-composer
|
||||
symfony/http-foundation v6.4.16 php-composer
|
||||
symfony/mailer v6.4.13 php-composer
|
||||
symfony/mime v6.4.17 php-composer
|
||||
symfony/polyfill-ctype v1.31.0 php-composer (+1 duplicate)
|
||||
symfony/polyfill-iconv v1.31.0 php-composer
|
||||
symfony/polyfill-intl-grapheme v1.31.0 php-composer (+2 duplicates)
|
||||
@@ -387,13 +389,14 @@ symfony/polyfill-php80 v1.31.0 php-composer (+1
|
||||
symfony/polyfill-php82 v1.31.0 php-composer
|
||||
symfony/polyfill-php83 v1.31.0 php-composer (+1 duplicate)
|
||||
symfony/polyfill-uuid v1.29.0 php-composer
|
||||
symfony/process v6.4.12 php-composer
|
||||
symfony/routing v6.4.12 php-composer
|
||||
symfony/service-contracts v3.5.0 php-composer (+1 duplicate)
|
||||
symfony/process v6.4.15 php-composer
|
||||
symfony/routing v6.4.16 php-composer
|
||||
symfony/service-contracts v3.5.0 php-composer
|
||||
symfony/service-contracts v3.5.1 php-composer
|
||||
symfony/string v6.4.11 php-composer
|
||||
symfony/string v6.4.13 php-composer
|
||||
symfony/translation v6.4.4 php-composer
|
||||
symfony/translation-contracts v3.4.2 php-composer
|
||||
symfony/string v6.4.15 php-composer
|
||||
symfony/translation v6.4.13 php-composer
|
||||
symfony/translation-contracts v3.5.1 php-composer
|
||||
symfony/uid v6.4.3 php-composer
|
||||
talloc 2.4.2-r1 apk
|
||||
tdb-libs 1.4.9-r1 apk
|
||||
|
||||
Reference in New Issue
Block a user