Files
templates/blueprints/typesense/docker-compose.yml
Maximilian Walterskirchen a55f98f1b7 Add Typesense blueprint with Docker Compose setup and update meta.json (#275)
- 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>
2025-08-22 23:04:44 -06:00

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: