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
This commit is contained in:
parent
5eb85557c2
commit
bba92dd0fe
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue