mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
- Introduced Typesense service with Docker Compose configuration. - Added Typesense template for environment variables and configuration. - Updated meta.json to include Typesense entry and formatted tags for consistency. Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
15 lines
324 B
YAML
15 lines
324 B
YAML
version: "3.8"
|
|
services:
|
|
typesense:
|
|
image: typesense/typesense:29.0
|
|
restart: unless-stopped
|
|
environment:
|
|
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
|
|
- TYPESENSE_ENABLE_CORS=${TYPESENSE_ENABLE_CORS}
|
|
- TYPESENSE_DATA_DIR=/data
|
|
volumes:
|
|
- typesense-data:/data
|
|
|
|
volumes:
|
|
typesense-data:
|