Files
torrent-indexer/docker-compose.yml
Felipe Marinho 2812c203c9 Docs/add instructions (#7)
* chg: chore: add linter

* chg: docs: add tutorial for deploying
2024-04-28 12:27:17 -03:00

24 lines
400 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
redis:
image: redis:alpine
container_name: redis
restart: unless-stopped
networks:
- indexer
networks:
indexer: