docs(readme): add env var WORKING_DIR to variable list

This commit is contained in:
2025-02-23 06:15:52 -07:00
parent f6850cec43
commit 5752375058

View File

@@ -582,11 +582,15 @@ services:
tvapp: tvapp:
container_name: tvapp2 container_name: tvapp2
image: ghcr.io/thebinaryninja/tvapp2:latest # Image: Github image: ghcr.io/thebinaryninja/tvapp2:latest # Image: Github
# image: TheBinaryNinja/tvapp2:latest # Image: Dockerhub # image: thebinaryninja/tvapp2:latest # Image: Dockerhub
# image: git.binaryninja.net/binaryninja/tvapp2:latest # Image: Gitea # image: git.binaryninja.net/binaryninja/tvapp2:latest # Image: Gitea
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./tvapp:/config - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
- ./config:/config
- ./app:/usr/bin/app
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -622,6 +626,7 @@ This docker container contains the following env variables:
| `WEB_IP` | `0.0.0.0` | Port to use for webserver | | `WEB_IP` | `0.0.0.0` | Port to use for webserver |
| `WEB_PORT` | `4124` | IP to use for webserver | | `WEB_PORT` | `4124` | IP to use for webserver |
| `URL_REPO` | `https://git.binaryninja.net/BinaryNinja/` | Determines where the data files will be downloaded from. Do not change this or you will be unable to get M3U and EPG data. | | `URL_REPO` | `https://git.binaryninja.net/BinaryNinja/` | Determines where the data files will be downloaded from. Do not change this or you will be unable to get M3U and EPG data. |
| `WORKING_DIR` | `/usr/bin/app` | Folder where TVApp2 will be installed and ran |
<br /> <br />