summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSlava Vishnyakov <[email protected]>2023-04-26 04:12:26 +0300
committerGitHub <[email protected]>2023-04-25 18:12:26 -0700
commitbba92dd0fea46c7cb97f1386cccc63e767f8beae (patch)
tree7a2ba44f8317e05c26eded2d325cba75742b51c4
parent5eb85557c2f65d7bef0eddca50ea46e67b50ee2e (diff)
downloadcaprover-one-click-apps-bba92dd0fea46c7cb97f1386cccc63e767f8beae.tar.gz
caprover-one-click-apps-bba92dd0fea46c7cb97f1386cccc63e767f8beae.zip
Fix Meilisearch / bump (#915)
* Fix Meilisearch params / volumes * Snapshot Interval no longer an option https://www.meilisearch.com/docs/learn/configuration/instance_options#schedule-snapshot-creation
-rw-r--r--public/v4/apps/meilisearch.yml14
1 files changed, 5 insertions, 9 deletions
diff --git a/public/v4/apps/meilisearch.yml b/public/v4/apps/meilisearch.yml
index 68b7f6a..4a41408 100644
--- a/public/v4/apps/meilisearch.yml
+++ b/public/v4/apps/meilisearch.yml
@@ -6,6 +6,7 @@ services:
- $$cap_appname-data:/data.ms
- $$cap_appname-snapshot:/snapshot
- $$cap_appname-dump:/dumps
+ - $$cap_appname-meili-data:/meili_data
restart: always
environment:
MEILI_MASTER_KEY: $$cap_master_key
@@ -25,7 +26,7 @@ caproverOneClickApp:
- id: $$cap_app_version
label: MeiliSearch Version
description: 'Check out their Docker page for the valid tags: https://hub.docker.com/r/getmeili/meilisearch/tags'
- defaultValue: 'v0.25.2'
+ defaultValue: 'v1.1'
validRegex: /^([^\s^\/])+$/
- id: $$cap_master_key
label: MeiliSearch Master Key
@@ -64,14 +65,9 @@ caproverOneClickApp:
description: MeiliSearch use Sentry to get bug reports and diagnostics, and improve MeiliSearch experience. To deactivate Sentry, set this value to true.
- id: $$cap_schedule_snapshot
label: Schedule Snapshot Creation
- defaultValue: 'false'
- validRegex: /^(true|false)$/
- description: To activate scheduled snapshots, set this value to true. Disabled by default.
- - id: $$cap_snapshot_interval
- label: Snapshot Interval
- defaultValue: '86400'
- validRegex: /^\d[\d.]*$/
- description: Defines the time gap in seconds between each snapshot creation.
+ defaultValue: ''
+ validRegex: /^[\d.]*$/
+ description: Defines the time gap in seconds between each snapshot creation in seconds. Disabled if empty.
- id: $$cap_dump_batchsize
label: Dump Batch Size
defaultValue: '1024'