34 lines
607 B
YAML
34 lines
607 B
YAML
version: '3.8'
|
|
|
|
networks:
|
|
iptv:
|
|
driver: bridge
|
|
|
|
services:
|
|
chzzk-proxy:
|
|
build: .
|
|
container_name: chzzk-jellyfin-proxy
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
networks:
|
|
- iptv
|
|
|
|
threadfin:
|
|
image: fyb3roptik/threadfin:latest
|
|
container_name: threadfin
|
|
ports:
|
|
- "34400:34400"
|
|
environment:
|
|
- THREADFIN_PORT=34400
|
|
- THREADFIN_BRANCH=main
|
|
volumes:
|
|
- /mnt/big/threadfin/threadfin-config:/home/threadfin/conf
|
|
depends_on:
|
|
- chzzk-proxy
|
|
restart: unless-stopped
|
|
networks:
|
|
- iptv
|