Ytztvio is a Stremio Add-on that wraps around the APIs of YTS and EZTV to provide torrent streams for movies and TV shows.
[https://hub.docker.com/r/jarvisnexus/ytztvio] (Ytztvio - Docker)
name: 'ytztvio'
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
image: jarvisnexus/ytztvio:latest
container_name: ytztvio
ports:
- "3000:80"
environment:
- PORT=80
- EZTV_API_BASE_URL=https://eztvx.to
- YTS_API_BASE_URL=https://yts.mx
restart: always
docker run -d \
--name ytztvio \
-p 3000:80 \
-e PORT=80 \
-e EZTV_API_BASE_URL=https://eztvx.to \
-e YTS_API_BASE_URL=https://yts.mx \
--restart always \
jarvisnexus/ytztvio:latest
Variable Name | Default Value | Description |
---|---|---|
YTS_API_BASE_URL |
https://yts.mx |
Base URL for the YTS API. |
EZTV_API_BASE_URL |
https://eztvx.to |
Base URL for the EZTV API. |
PORT |
3000 |
Port number for the server. |