adjust detail

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-06-27 11:56:54 +02:00
parent dedc25dc51
commit 443fb67465
2 changed files with 5 additions and 5 deletions

View file

@ -677,7 +677,7 @@ if [ "$FULLTEXTSEARCH_ENABLED" = 'yes' ]; then
php /var/www/html/occ app:update files_fulltextsearch php /var/www/html/occ app:update files_fulltextsearch
fi fi
php /var/www/html/occ fulltextsearch:configure '{"search_platform":"OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform"}' php /var/www/html/occ fulltextsearch:configure '{"search_platform":"OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform"}'
php /var/www/html/occ fulltextsearch_elasticsearch:configure "{\"elastic_host\":\"http://elastic:$ELASTIC_PASSWORD@$FULLTEXTSEARCH_HOST:9200\",\"elastic_index\":\"nextcloud-aio\"}" php /var/www/html/occ fulltextsearch_elasticsearch:configure "{\"elastic_host\":\"http://elastic:$FULLTEXTSEARCH_PASSWORD@$FULLTEXTSEARCH_HOST:9200\",\"elastic_index\":\"nextcloud-aio\"}"
php /var/www/html/occ files_fulltextsearch:configure "{\"files_pdf\":\"1\",\"files_office\":\"1\"}" php /var/www/html/occ files_fulltextsearch:configure "{\"files_pdf\":\"1\",\"files_office\":\"1\"}"
# Do the index # Do the index

View file

@ -114,7 +114,7 @@
"NEXTCLOUD_PASSWORD", "NEXTCLOUD_PASSWORD",
"TURN_SECRET", "TURN_SECRET",
"SIGNALING_SECRET", "SIGNALING_SECRET",
"ELASTIC_PASSWORD" "FULLTEXTSEARCH_PASSWORD"
], ],
"volumes": [ "volumes": [
{ {
@ -182,7 +182,7 @@
"TALK_RECORDING_ENABLED=%TALK_RECORDING_ENABLED%", "TALK_RECORDING_ENABLED=%TALK_RECORDING_ENABLED%",
"RECORDING_SECRET=%RECORDING_SECRET%", "RECORDING_SECRET=%RECORDING_SECRET%",
"TALK_RECORDING_HOST=nextcloud-aio-talk-recording", "TALK_RECORDING_HOST=nextcloud-aio-talk-recording",
"ELASTIC_PASSWORD=%ELASTIC_PASSWORD%" "FULLTEXTSEARCH_PASSWORD=%FULLTEXTSEARCH_PASSWORD%"
], ],
"restart": "unless-stopped", "restart": "unless-stopped",
"devices": [ "devices": [
@ -503,7 +503,7 @@
"environment": [ "environment": [
"POSTGRES_HOST=nextcloud-aio-database", "POSTGRES_HOST=nextcloud-aio-database",
"TZ=%TIMEZONE%", "TZ=%TIMEZONE%",
"ELASTIC_PASSWORD=%ELASTIC_PASSWORD%", "FULLTEXTSEARCH_PASSWORD=%FULLTEXTSEARCH_PASSWORD%",
"ES_JAVA_OPTS=-Xms512M -Xmx512M", "ES_JAVA_OPTS=-Xms512M -Xmx512M",
"bootstrap.memory_lock=true", "bootstrap.memory_lock=true",
"cluster.name=nextcloud-aio", "cluster.name=nextcloud-aio",
@ -528,7 +528,7 @@
"nextcloud-aio" "nextcloud-aio"
], ],
"secrets": [ "secrets": [
"ELASTIC_PASSWORD" "FULLTEXTSEARCH_PASSWORD"
] ]
} }
] ]