mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-04 04:35:41 -04:00
51 lines
1.8 KiB
YAML
Executable File
51 lines
1.8 KiB
YAML
Executable File
# #
|
|
# TVApp2 Docker-compose.yml
|
|
#
|
|
# Automatic M3U playlist and XML guide updater for TheTvApp, TVPass, and MoveOnJoy utilized within your IPTV client.
|
|
#
|
|
# @url https://github.com/TheBinaryNinja/tvapp2
|
|
# https://git.binaryninja.net/BinaryNinja/tvapp2
|
|
#
|
|
# @image:github ghcr.io/thebinaryninja/tvapp2:latest
|
|
# ghcr.io/thebinaryninja/tvapp2:amd64
|
|
# ghcr.io/thebinaryninja/tvapp2:arm64
|
|
#
|
|
# @image:dockerhub thebinaryninja/tvapp2:latest
|
|
# thebinaryninja/tvapp2:1.0.0-amd64
|
|
# thebinaryninja/tvapp2:1.0.0-arm64
|
|
#
|
|
# @image:gitea git.binaryninja.net/binaryninja/tvapp2:latest
|
|
# git.binaryninja.net/binaryninja/tvapp2:1.0.0-amd64
|
|
# git.binaryninja.net/binaryninja/tvapp2:1.0.0-arm64
|
|
# #
|
|
|
|
services:
|
|
|
|
# #
|
|
# Service > TVApp2
|
|
# #
|
|
|
|
tvapp2:
|
|
container_name: tvapp2
|
|
image: ghcr.io/thebinaryninja/tvapp2:latest # Image: Github
|
|
# image: thebinaryninja/tvapp2:latest # Image: Dockerhub
|
|
# image: git.binaryninja.net/binaryninja/tvapp2:latest # Image: Gitea
|
|
# image: tvapp2:latest # Image: Locally built
|
|
hostname: tvapp2
|
|
environment:
|
|
TZ: "Etc/UTC"
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./config:/config
|
|
- ./app:/usr/bin/app
|
|
ulimits:
|
|
memlock:
|
|
soft: -1
|
|
hard: -1
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "--fail", "http://127.0.0.1:4124" ]
|
|
interval: 30s
|
|
retries: 5
|