This repository is now deprecated, will no longer be updated and is being set to archived.
locast2tuner - This application provides an interface between locast.org and Plex Media Server (PMS) or Emby by acting like a HDHomerun or an m3u Tuner and an XMLTV provider.
The architectures supported by this image are:
Architecture | Tag |
---|---|
x86-64 | amd64-latest |
Tag | Description |
---|---|
latest | LSIO Ubuntu Focal + Rust + locast2tuner |
Container images are configured using the following parameters passed at runtime.
Parameter | Function |
---|---|
-p 6077 |
The port for the tuner access |
-e L2DUSER="username" |
Locast Username |
-e L2DPASS="password" |
Locast Password |
-e L2DZIP=#####,##### |
Locast Zipcodes, zipcode in format: #####,#####,##### |
-e multiplex=true |
Enables using a single HTTP interface multiplexing all Tuners through one interface for both streaming and EPG. |
Don't use quotation marks in the environmental variables.
docker create \
--name=locast2tuner \
-p 6077 \
-e L2DUSER=username \
-e L2DPASS=password \
-e L2DZIP=#####,##### \
-e multiplex=true \
randomninjaatk/locast2tuner
Compatible with docker-compose v2 schemas. Don't use quotation marks in the environmental variables.
version: "2.1"
services:
locast2tuner:
image: randomninjaatk/locast2tuner
container_name: locast2tuner
environment:
- L2DUSER=username
- L2DPASS=password
- L2DZIP=#####,#####
- multiplex=true
ports:
- 6077:6077
restart: unless-stopped