mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: Add extensive collection of application blueprints with Docker Compose configurations
This commit is contained in:
14
blueprints/meilisearch/docker-compose.yml
Normal file
14
blueprints/meilisearch/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
meilisearch:
|
||||
image: getmeili/meilisearch:v1.8.3
|
||||
volumes:
|
||||
- meili_data:/meili_data
|
||||
environment:
|
||||
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
|
||||
MEILI_ENV: ${MEILI_ENV}
|
||||
|
||||
volumes:
|
||||
meili_data:
|
||||
driver: local
|
||||
BIN
blueprints/meilisearch/meilisearch.png
Normal file
BIN
blueprints/meilisearch/meilisearch.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.6 KiB |
15
blueprints/meilisearch/template.yml
Normal file
15
blueprints/meilisearch/template.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
variables:
|
||||
main_domain: ${randomDomain}
|
||||
master_key: ${base64:32}
|
||||
|
||||
config:
|
||||
domains:
|
||||
- serviceName: meilisearch
|
||||
port: 7700
|
||||
host: ${main_domain}
|
||||
|
||||
env:
|
||||
MEILI_ENV: "development"
|
||||
MEILI_MASTER_KEY: ${master_key}
|
||||
|
||||
mounts: []
|
||||
Reference in New Issue
Block a user