2024-04-28 12:27:17 -03:00
|
|
|
version: '3'
|
2023-09-23 17:02:55 +00:00
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
torrent-indexer:
|
2024-04-28 12:27:17 -03:00
|
|
|
image: felipemarinho97/torrent-indexer:latest
|
2023-09-23 17:02:55 +00:00
|
|
|
container_name: torrent-indexer
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- 8080:7006
|
|
|
|
|
networks:
|
|
|
|
|
- indexer
|
|
|
|
|
environment:
|
|
|
|
|
- REDIS_HOST=redis
|
2024-12-13 11:54:55 -03:00
|
|
|
- MEILISEARCH_ADDRESS=http://meilisearch:7700
|
|
|
|
|
- MEILISEARCH_KEY=my-secret-key
|
2024-09-24 18:31:58 -03:00
|
|
|
- FLARESOLVERR_ADDRESS=http://flaresolverr:8191
|
2023-09-23 17:02:55 +00:00
|
|
|
|
|
|
|
|
redis:
|
|
|
|
|
image: redis:alpine
|
|
|
|
|
container_name: redis
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
networks:
|
|
|
|
|
- indexer
|
|
|
|
|
|
2024-12-13 11:54:55 -03:00
|
|
|
# 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
|
|
|
|
|
|
2023-09-23 17:02:55 +00:00
|
|
|
networks:
|
|
|
|
|
indexer:
|