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.

34 lines
1019 B
YAML

# [Minisatip](https://github.com/catalinii/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.
---
version: "2.1"
services:
minisatip:
image: ghcr.io/linuxserver/minisatip
container_name: minisatip
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify specific run params for minisatip
- RUN_OPTS=
volumes:
# Configuration files and minisatip data
- ${BASEDIR:-/volume1/docker}/minisatip/config:/config
ports:
# Status Page WebUI
- 8875:8875
# RTSP Port
- 554:554
# App Discovery
- 1900:1900/udp
devices:
# For passing through Tv-cards
- /dev/dvb:/dev/dvb
restart: unless-stopped