diff --git a/templates/nextcloud-config.yaml b/templates/nextcloud-config.yaml
index 3d3a74d680b4c75b69ae6b2aaf91ebdcbc0658e7..26e83dde3acb6aef9c06efe6e16a0cadc525abc9 100644
--- a/templates/nextcloud-config.yaml
+++ b/templates/nextcloud-config.yaml
@@ -29,14 +29,14 @@ data:
   setup-apps.sh: |
     #!/bin/bash
     #
-    # This is a post-install,post-upgrade helm hook, which
+    # This script gets executed by a post-install,post-upgrade helm hook, which
     #
     #   * Persists and loads the onlyoffice-config.json config file
-    #   * Run upgrade routines after installation of a new release.
+    #   * Runs upgrade routines after installation of a new release.
     #   * Updates all applications
     #   * Installs all apps declared in the `apps` helm values array
     #   * Configures single-sign-on
-    #   * Update database indices, columns, keys, etc needed after NC upgrade
+    #   * Updates database indices, columns, keys, etc needed after NC upgrade
 
     set -ev
 
@@ -46,7 +46,6 @@ data:
     occ="/var/www/html/occ"
 
     # Run upgrade routines after installation of a new release.
-    php $occ upgrade --no-interaction
 
     # Enable app store so we can run `install` and `enable` commands
     php $occ config:system:set appstoreenabled --type boolean --value true