Files
torrent-indexer/docker-compose.yml

25 lines
454 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
- FLARESOLVERR_ADDRESS=http://flaresolverr:8191
redis:
image: redis:alpine
container_name: redis
restart: unless-stopped
networks:
- indexer
networks:
indexer: