mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-06-03 09:57:35 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b57369d48 | |||
| 4b69b7c771 | |||
| c3edf34346 | |||
| 9aa1ba3f2d | |||
| b5dcbd3a54 | |||
| 7a539fcefd | |||
| 17033d41f5 |
Executable
+20
@@ -0,0 +1,20 @@
|
||||
# This file is globally distributed to all container image projects from
|
||||
# https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Unix-style newlines with a newline ending every file
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
# trim_trailing_whitespace may cause unintended issues and should not be globally set true
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[{Dockerfile*,**.yml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open.
|
||||
* Read, and fill the Pull Request template
|
||||
* If this is a fix for a typo in code or documentation in the README please file an issue
|
||||
* 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)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<!--- Before submitting a pull request please check the following -->
|
||||
|
||||
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR -->
|
||||
<!--- 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 -->
|
||||
<!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ -->
|
||||
<!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message -->
|
||||
<!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message -->
|
||||
|
||||
@@ -10,7 +10,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/stale@v1
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
|
||||
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
|
||||
|
||||
Vendored
+10
-2
@@ -55,7 +55,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 ./.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'
|
||||
}
|
||||
script{
|
||||
env.LS_RELEASE_NUMBER = sh(
|
||||
@@ -260,7 +260,6 @@ pipeline {
|
||||
git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO}
|
||||
cd ${TEMPDIR}/repo/${LS_REPO}
|
||||
git checkout -f php8
|
||||
cd ${TEMPDIR}/docker-${CONTAINER_NAME}
|
||||
for i in ${TEMPLATES_TO_DELETE}; do
|
||||
git rm "${i}"
|
||||
done
|
||||
@@ -521,6 +520,15 @@ pipeline {
|
||||
apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \
|
||||
sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \
|
||||
chmod 777 /tmp/package_versions.txt'
|
||||
elif [ "${DIST_IMAGE}" == "fedora" ]; then
|
||||
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
|
||||
rpm -qa > /tmp/package_versions.txt && \
|
||||
sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \
|
||||
chmod 777 /tmp/package_versions.txt'
|
||||
elif [ "${DIST_IMAGE}" == "arch" ]; then
|
||||
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
|
||||
pacman -Q > /tmp/package_versions.txt && \
|
||||
chmod 777 /tmp/package_versions.txt'
|
||||
fi
|
||||
NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )
|
||||
echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github"
|
||||
|
||||
@@ -33,7 +33,6 @@ Find us at:
|
||||
[](https://github.com/linuxserver/docker-nextcloud/releases)
|
||||
[](https://github.com/linuxserver/docker-nextcloud/packages)
|
||||
[](https://gitlab.com/linuxserver.io/docker-nextcloud/container_registry)
|
||||
[](https://microbadger.com/images/linuxserver/nextcloud "Get your own version badge on microbadger.com")
|
||||
[](https://hub.docker.com/r/linuxserver/nextcloud)
|
||||
[](https://hub.docker.com/r/linuxserver/nextcloud)
|
||||
[](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-nextcloud/job/php8/)
|
||||
@@ -89,9 +88,7 @@ If (auto) installed, those built-in packages may cause instability and should be
|
||||
|
||||
Here are some example snippets to help you get started creating a container.
|
||||
|
||||
### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose))
|
||||
|
||||
Compatible with docker-compose v2 schemas.
|
||||
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
|
||||
|
||||
```yaml
|
||||
---
|
||||
@@ -112,7 +109,7 @@ services:
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
### docker cli
|
||||
### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
|
||||
+43
-43
@@ -1,4 +1,4 @@
|
||||
alpine-baselayout-3.2.0-r15
|
||||
alpine-baselayout-3.2.0-r16
|
||||
alpine-keys-2.3-r1
|
||||
alsa-lib-1.2.5-r2
|
||||
aom-libs-1.0.0-r3
|
||||
@@ -7,7 +7,7 @@ apk-tools-2.12.5-r1
|
||||
apr-1.7.0-r0
|
||||
apr-util-1.6.1-r7
|
||||
argon2-libs-20190702-r1
|
||||
avahi-libs-0.8-r4
|
||||
avahi-libs-0.8-r5
|
||||
bash-5.1.4-r0
|
||||
brotli-libs-1.0.9-r5
|
||||
busybox-1.33.1-r3
|
||||
@@ -18,7 +18,7 @@ cairo-1.16.0-r3
|
||||
cairo-gobject-1.16.0-r3
|
||||
coreutils-8.32-r2
|
||||
cups-libs-2.3.3-r2
|
||||
curl-7.77.0-r1
|
||||
curl-7.78.0-r0
|
||||
dbus-libs-1.12.20-r2
|
||||
expat-2.4.1-r0
|
||||
ffmpeg-4.4-r1
|
||||
@@ -30,7 +30,7 @@ gdbm-1.19-r0
|
||||
gdk-pixbuf-2.42.6-r0
|
||||
ghostscript-9.54.0-r0
|
||||
git-2.32.0-r0
|
||||
glib-2.68.2-r0
|
||||
glib-2.68.3-r0
|
||||
gmp-6.2.1-r0
|
||||
gnu-libiconv-1.16-r0
|
||||
gnutls-3.7.1-r0
|
||||
@@ -54,7 +54,7 @@ libbz2-1.0.8-r1
|
||||
libc-utils-0.7.2-r3
|
||||
libcap-2.50-r0
|
||||
libcrypto1.1-1.1.1k-r0
|
||||
libcurl-7.77.0-r1
|
||||
libcurl-7.78.0-r0
|
||||
libdav1d-0.9.0-r0
|
||||
libde265-1.0.8-r1
|
||||
libdrm-2.4.106-r0
|
||||
@@ -131,49 +131,49 @@ p11-kit-0.23.22-r0
|
||||
pango-1.48.5-r0
|
||||
pcre-8.44-r0
|
||||
pcre2-10.36-r0
|
||||
php8-8.0.7-r0
|
||||
php8-bcmath-8.0.7-r0
|
||||
php8-bz2-8.0.7-r0
|
||||
php8-common-8.0.7-r0
|
||||
php8-ctype-8.0.7-r0
|
||||
php8-curl-8.0.7-r0
|
||||
php8-dom-8.0.7-r0
|
||||
php8-exif-8.0.7-r0
|
||||
php8-fileinfo-8.0.7-r0
|
||||
php8-fpm-8.0.7-r0
|
||||
php8-ftp-8.0.7-r0
|
||||
php8-gd-8.0.7-r0
|
||||
php8-gmp-8.0.7-r0
|
||||
php8-iconv-8.0.7-r0
|
||||
php8-imap-8.0.7-r0
|
||||
php8-intl-8.0.7-r0
|
||||
php8-ldap-8.0.7-r0
|
||||
php8-mbstring-8.0.7-r0
|
||||
php8-mysqlnd-8.0.7-r0
|
||||
php8-opcache-8.0.7-r0
|
||||
php8-openssl-8.0.7-r0
|
||||
php8-pcntl-8.0.7-r0
|
||||
php8-pdo-8.0.7-r0
|
||||
php8-pdo_mysql-8.0.7-r0
|
||||
php8-pdo_pgsql-8.0.7-r0
|
||||
php8-pdo_sqlite-8.0.7-r0
|
||||
php8-8.0.9-r0
|
||||
php8-bcmath-8.0.9-r0
|
||||
php8-bz2-8.0.9-r0
|
||||
php8-common-8.0.9-r0
|
||||
php8-ctype-8.0.9-r0
|
||||
php8-curl-8.0.9-r0
|
||||
php8-dom-8.0.9-r0
|
||||
php8-exif-8.0.9-r0
|
||||
php8-fileinfo-8.0.9-r0
|
||||
php8-fpm-8.0.8-r0
|
||||
php8-ftp-8.0.9-r0
|
||||
php8-gd-8.0.9-r0
|
||||
php8-gmp-8.0.9-r0
|
||||
php8-iconv-8.0.9-r0
|
||||
php8-imap-8.0.9-r0
|
||||
php8-intl-8.0.9-r0
|
||||
php8-ldap-8.0.9-r0
|
||||
php8-mbstring-8.0.9-r0
|
||||
php8-mysqlnd-8.0.9-r0
|
||||
php8-opcache-8.0.9-r0
|
||||
php8-openssl-8.0.9-r0
|
||||
php8-pcntl-8.0.9-r0
|
||||
php8-pdo-8.0.9-r0
|
||||
php8-pdo_mysql-8.0.9-r0
|
||||
php8-pdo_pgsql-8.0.9-r0
|
||||
php8-pdo_sqlite-8.0.9-r0
|
||||
php8-pecl-apcu-5.1.20-r0
|
||||
php8-pecl-igbinary-3.2.3-r0
|
||||
php8-pecl-igbinary-3.2.4-r0
|
||||
php8-pecl-imagick-3.5.0-r0
|
||||
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.7-r0
|
||||
php8-phar-8.0.7-r0
|
||||
php8-posix-8.0.7-r0
|
||||
php8-session-8.0.7-r0
|
||||
php8-simplexml-8.0.7-r0
|
||||
php8-sodium-8.0.7-r0
|
||||
php8-sqlite3-8.0.7-r0
|
||||
php8-xml-8.0.7-r0
|
||||
php8-xmlreader-8.0.7-r0
|
||||
php8-xmlwriter-8.0.7-r0
|
||||
php8-zip-8.0.7-r0
|
||||
php8-pgsql-8.0.9-r0
|
||||
php8-phar-8.0.9-r0
|
||||
php8-posix-8.0.9-r0
|
||||
php8-session-8.0.9-r0
|
||||
php8-simplexml-8.0.8-r0
|
||||
php8-sodium-8.0.9-r0
|
||||
php8-sqlite3-8.0.9-r0
|
||||
php8-xml-8.0.8-r0
|
||||
php8-xmlreader-8.0.9-r0
|
||||
php8-xmlwriter-8.0.8-r0
|
||||
php8-zip-8.0.9-r0
|
||||
pixman-0.40.0-r2
|
||||
pkgconf-1.7.4-r0
|
||||
popt-1.18-r0
|
||||
|
||||
Reference in New Issue
Block a user