You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
803 B
Bash

3 years ago
# Minisatip is a multi-threaded satip server version 1.2 that runs under Linux
# and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and
# ISDB-T cards.
source ./.env
docker run -d \
--name=minisatip \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=Europe/Amsterdam `# Specify a timezone to use for example Europe/Amsterdam` \
-e RUN_OPTS=<parameter> `# Specify specific run params for minisatip` \
-p 8875:8875 `# Status Page WebUI` \
-p 554:554 `# RTSP Port` \
-p 1900:1900/udp `# App Discovery` \
-v ${BASEDIR:-/volume1/docker}/minisatip/config:/config `# Configuration files and minisatip data` \
--device /dev/dvb:/dev/dvb `# For passing through Tv-cards` \
--restart unless-stopped \
ghcr.io/linuxserver/minisatip