Files
torrent-indexer/docker-compose.yml

39 lines
888 B
YAML
Raw Permalink Normal View History

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: