We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a996f commit a3e32a8Copy full SHA for a3e32a8
.docker/scripts/entrypoint.sh
@@ -6,7 +6,11 @@ groupmod --non-unique --gid "${HOST_GID}" www-data
6
7
# Clone Nextcloud repository, if needed
8
if [ ! -d ".git" ]; then
9
- git clone --progress --single-branch --depth 1 --branch "${VERSION_NEXTCLOUD}" --recurse-submodules -j 4 https://github.com/nextcloud/server /var/www/html
+ git init
10
+ git remote add origin https://github.com/nextcloud/server
11
+ git fetch --depth=1 origin "${VERSION_NEXTCLOUD}"
12
+ git checkout "${VERSION_NEXTCLOUD}"
13
+ git submodule update --init --recursive
14
mkdir data
15
mkdir apps-writable
16
mkdir apps-extra
0 commit comments