docker-bits/lsio/oscam/docker-compose.yaml

28 lines
794 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Oscam](http://www.streamboard.tv/oscam/) is an Open Source Conditional Access
# Module software used for descrambling DVB transmissions using smart cards.
# It's both a server and a client.
2021-04-10 10:16:29 +00:00
---
version: "2.1"
services:
oscam:
image: ghcr.io/linuxserver/oscam
container_name: oscam
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2021-04-10 10:16:29 +00:00
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Where oscam should store config files and logs.
- ${BASEDIR:-/volume1/docker}/oscam/config:/config
ports:
# WebUI
- 8888:8888
devices:
# For passing through smart card readers.
- /dev/ttyUSB0:/dev/ttyUSB0
restart: unless-stopped