* new: feat: add search support with meilisearch * new: feat: add search interface * new: feat: add new audio mappings * chg: fix: add meilisearch docs * chg: fix: lint issues * chg: feat: add br flag * chg: fix: use the same user agent * chg: fix: bludv (again) * chg: fix: lint issue
39 lines
888 B
YAML
39 lines
888 B
YAML
version: '3'
|
|
|
|
services:
|
|
torrent-indexer:
|
|
image: felipemarinho97/torrent-indexer:latest
|
|
container_name: torrent-indexer
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:7006
|
|
networks:
|
|
- indexer
|
|
environment:
|
|
- REDIS_HOST=redis
|
|
- MEILISEARCH_ADDRESS=http://meilisearch:7700
|
|
- MEILISEARCH_KEY=my-secret-key
|
|
- FLARESOLVERR_ADDRESS=http://flaresolverr:8191
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: redis
|
|
restart: unless-stopped
|
|
networks:
|
|
- indexer
|
|
|
|
# This container is not necessary for the indexer to work,
|
|
# deploy if you want to use the search feature
|
|
meilisearch:
|
|
image: getmeili/meilisearch:latest
|
|
container_name: meilisearch
|
|
restart: unless-stopped
|
|
networks:
|
|
- indexer
|
|
environment:
|
|
- MEILI_NO_ANALYTICS=true
|
|
- MEILI_MASTER_KEY=my-secret-key
|
|
|
|
networks:
|
|
indexer:
|