summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2020-06-09 13:26:33 +0000
committerGitHub <noreply@github.com>2020-06-09 13:26:33 +0000
commit3ac6fde8d6ed3c13cea1e39d5957ef6be9b6b210 (patch)
tree600dca0f0a06faa55a5b60ef9a60824bd641e716
parent0599d1022cc4e1192a19f1c8fcd83c6d195d6b96 (diff)
Remove db prefix option (#1131)
* Remove db prefix option Signed-off-by: J0WI <J0WI@users.noreply.github.com> * Upgrade to 18.0.6 Signed-off-by: J0WI <J0WI@users.noreply.github.com>
-rw-r--r--.config/autoconfig.php4
-rw-r--r--16.0/apache/config/autoconfig.php4
-rwxr-xr-x16.0/apache/entrypoint.sh4
-rw-r--r--16.0/fpm-alpine/config/autoconfig.php4
-rwxr-xr-x16.0/fpm-alpine/entrypoint.sh4
-rw-r--r--16.0/fpm/config/autoconfig.php4
-rwxr-xr-x16.0/fpm/entrypoint.sh4
-rw-r--r--17.0/apache/config/autoconfig.php4
-rwxr-xr-x17.0/apache/entrypoint.sh4
-rw-r--r--17.0/fpm-alpine/config/autoconfig.php4
-rwxr-xr-x17.0/fpm-alpine/entrypoint.sh4
-rw-r--r--17.0/fpm/config/autoconfig.php4
-rwxr-xr-x17.0/fpm/entrypoint.sh4
-rw-r--r--18.0/apache/Dockerfile2
-rw-r--r--18.0/apache/config/autoconfig.php4
-rwxr-xr-x18.0/apache/entrypoint.sh4
-rw-r--r--18.0/fpm-alpine/Dockerfile2
-rw-r--r--18.0/fpm-alpine/config/autoconfig.php4
-rwxr-xr-x18.0/fpm-alpine/entrypoint.sh4
-rw-r--r--18.0/fpm/Dockerfile2
-rw-r--r--18.0/fpm/config/autoconfig.php4
-rwxr-xr-x18.0/fpm/entrypoint.sh4
-rw-r--r--19.0/apache/config/autoconfig.php4
-rwxr-xr-x19.0/apache/entrypoint.sh4
-rw-r--r--19.0/fpm-alpine/config/autoconfig.php4
-rwxr-xr-x19.0/fpm-alpine/entrypoint.sh4
-rw-r--r--19.0/fpm/config/autoconfig.php4
-rwxr-xr-x19.0/fpm/entrypoint.sh4
-rw-r--r--README.md3
-rwxr-xr-xdocker-entrypoint.sh4
30 files changed, 4 insertions, 109 deletions
diff --git a/.config/autoconfig.php b/.config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/.config/autoconfig.php
+++ b/.config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/16.0/apache/config/autoconfig.php b/16.0/apache/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/16.0/apache/config/autoconfig.php
+++ b/16.0/apache/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/16.0/apache/entrypoint.sh b/16.0/apache/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/16.0/apache/entrypoint.sh
+++ b/16.0/apache/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/16.0/fpm-alpine/config/autoconfig.php b/16.0/fpm-alpine/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/16.0/fpm-alpine/config/autoconfig.php
+++ b/16.0/fpm-alpine/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/16.0/fpm-alpine/entrypoint.sh b/16.0/fpm-alpine/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/16.0/fpm-alpine/entrypoint.sh
+++ b/16.0/fpm-alpine/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/16.0/fpm/config/autoconfig.php b/16.0/fpm/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/16.0/fpm/config/autoconfig.php
+++ b/16.0/fpm/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/16.0/fpm/entrypoint.sh b/16.0/fpm/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/16.0/fpm/entrypoint.sh
+++ b/16.0/fpm/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/17.0/apache/config/autoconfig.php b/17.0/apache/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/17.0/apache/config/autoconfig.php
+++ b/17.0/apache/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/17.0/apache/entrypoint.sh b/17.0/apache/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/17.0/apache/entrypoint.sh
+++ b/17.0/apache/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/17.0/fpm-alpine/config/autoconfig.php b/17.0/fpm-alpine/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/17.0/fpm-alpine/config/autoconfig.php
+++ b/17.0/fpm-alpine/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/17.0/fpm-alpine/entrypoint.sh b/17.0/fpm-alpine/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/17.0/fpm-alpine/entrypoint.sh
+++ b/17.0/fpm-alpine/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/17.0/fpm/config/autoconfig.php b/17.0/fpm/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/17.0/fpm/config/autoconfig.php
+++ b/17.0/fpm/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/17.0/fpm/entrypoint.sh b/17.0/fpm/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/17.0/fpm/entrypoint.sh
+++ b/17.0/fpm/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/18.0/apache/Dockerfile b/18.0/apache/Dockerfile
index 7ee8c5fc..19444769 100644
--- a/18.0/apache/Dockerfile
+++ b/18.0/apache/Dockerfile
@@ -115,7 +115,7 @@ RUN a2enmod headers rewrite remoteip ;\
} > /etc/apache2/conf-available/remoteip.conf;\
a2enconf remoteip
-ENV NEXTCLOUD_VERSION 18.0.5
+ENV NEXTCLOUD_VERSION 18.0.6
RUN set -ex; \
fetchDeps=" \
diff --git a/18.0/apache/config/autoconfig.php b/18.0/apache/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/18.0/apache/config/autoconfig.php
+++ b/18.0/apache/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/18.0/apache/entrypoint.sh b/18.0/apache/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/18.0/apache/entrypoint.sh
+++ b/18.0/apache/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/18.0/fpm-alpine/Dockerfile b/18.0/fpm-alpine/Dockerfile
index 1d5e067c..70713bb0 100644
--- a/18.0/fpm-alpine/Dockerfile
+++ b/18.0/fpm-alpine/Dockerfile
@@ -94,7 +94,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 18.0.5
+ENV NEXTCLOUD_VERSION 18.0.6
RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
diff --git a/18.0/fpm-alpine/config/autoconfig.php b/18.0/fpm-alpine/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/18.0/fpm-alpine/config/autoconfig.php
+++ b/18.0/fpm-alpine/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/18.0/fpm-alpine/entrypoint.sh b/18.0/fpm-alpine/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/18.0/fpm-alpine/entrypoint.sh
+++ b/18.0/fpm-alpine/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/18.0/fpm/Dockerfile b/18.0/fpm/Dockerfile
index 8159c95d..173c80c3 100644
--- a/18.0/fpm/Dockerfile
+++ b/18.0/fpm/Dockerfile
@@ -107,7 +107,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 18.0.5
+ENV NEXTCLOUD_VERSION 18.0.6
RUN set -ex; \
fetchDeps=" \
diff --git a/18.0/fpm/config/autoconfig.php b/18.0/fpm/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/18.0/fpm/config/autoconfig.php
+++ b/18.0/fpm/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/18.0/fpm/entrypoint.sh b/18.0/fpm/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/18.0/fpm/entrypoint.sh
+++ b/18.0/fpm/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/19.0/apache/config/autoconfig.php b/19.0/apache/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/19.0/apache/config/autoconfig.php
+++ b/19.0/apache/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/19.0/apache/entrypoint.sh b/19.0/apache/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/19.0/apache/entrypoint.sh
+++ b/19.0/apache/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/19.0/fpm-alpine/config/autoconfig.php b/19.0/fpm-alpine/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/19.0/fpm-alpine/config/autoconfig.php
+++ b/19.0/fpm-alpine/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/19.0/fpm-alpine/entrypoint.sh b/19.0/fpm-alpine/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/19.0/fpm-alpine/entrypoint.sh
+++ b/19.0/fpm-alpine/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/19.0/fpm/config/autoconfig.php b/19.0/fpm/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/19.0/fpm/config/autoconfig.php
+++ b/19.0/fpm/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/19.0/fpm/entrypoint.sh b/19.0/fpm/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/19.0/fpm/entrypoint.sh
+++ b/19.0/fpm/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'
diff --git a/README.md b/README.md
index 9d79a629..c418622a 100644
--- a/README.md
+++ b/README.md
@@ -125,10 +125,9 @@ If you set any values, they will not be asked in the install page on first run.
- `NEXTCLOUD_ADMIN_USER` Name of the Nextcloud admin user.
- `NEXTCLOUD_ADMIN_PASSWORD` Password for the Nextcloud admin user.
-If you want, you can set the data directory and table prefix, otherwise default values will be used.
+If you want, you can set the data directory, otherwise default value will be used.
- `NEXTCLOUD_DATA_DIR` (default: _/var/www/html/data_) Configures the data directory where nextcloud stores all files from the users.
-- `NEXTCLOUD_TABLE_PREFIX` (default: _""_) Optional prefix for the tables. Used to be `oc_` in the past
One or more trusted domains can be set through environment variable, too. They will be added to the configuration after install.
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'