Skip to content

Commit

Permalink
Install apps via env var for initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Oct 5, 2020
1 parent 5e0d2b2 commit 1a70554
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 20.0/apache/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,15 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
NC_TRUSTED_DOMAIN_IDX=$(($NC_TRUSTED_DOMAIN_IDX+1))
done
fi
if [ -n "${NEXTCLOUD_INSTALL_APPS+x}" ]; then
echo "Install apps…"
NC_APP_IDX=1
for APP in $NEXTCLOUD_INSTALL_APPS ; do
APP=$(echo "$APP" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
run_as "php /var/www/html/occ app:install -n $APP"
NC_APP_IDX=$(($NC_APP_IDX+1))
done
fi
else
echo "running web-based installer on first connect!"
fi
Expand Down
9 changes: 9 additions & 0 deletions 20.0/fpm-alpine/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,15 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
NC_TRUSTED_DOMAIN_IDX=$(($NC_TRUSTED_DOMAIN_IDX+1))
done
fi
if [ -n "${NEXTCLOUD_INSTALL_APPS+x}" ]; then
echo "Install apps…"
NC_APP_IDX=1
for APP in $NEXTCLOUD_INSTALL_APPS ; do
APP=$(echo "$APP" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
run_as "php /var/www/html/occ app:install -n $APP"
NC_APP_IDX=$(($NC_APP_IDX+1))
done
fi
else
echo "running web-based installer on first connect!"
fi
Expand Down
9 changes: 9 additions & 0 deletions 20.0/fpm/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,15 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
NC_TRUSTED_DOMAIN_IDX=$(($NC_TRUSTED_DOMAIN_IDX+1))
done
fi
if [ -n "${NEXTCLOUD_INSTALL_APPS+x}" ]; then
echo "Install apps…"
NC_APP_IDX=1
for APP in $NEXTCLOUD_INSTALL_APPS ; do
APP=$(echo "$APP" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
run_as "php /var/www/html/occ app:install -n $APP"
NC_APP_IDX=$(($NC_APP_IDX+1))
done
fi
else
echo "running web-based installer on first connect!"
fi
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ One or more trusted domains can be set through environment variable, too. They w

- `NEXTCLOUD_TRUSTED_DOMAINS` (not set by default) Optional space-separated list of domains

To install apps with the initial nextcloud installation, you can set a space separated list of apps.

- `NEXTCLOUD_INSTALL_APPS` (not set by default) Optional space-separated list of apps

The install and update script is only triggered when a default command is used (`apache-foreground` or `php-fpm`). If you use a custom command you have to enable the install / update with

- `NEXTCLOUD_UPDATE` (default: _0_)
Expand Down

0 comments on commit 1a70554

Please sign in to comment.