mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
28 lines
850 B
YAML
28 lines
850 B
YAML
# [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.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
oscam:
|
|
image: ghcr.io/linuxserver/oscam
|
|
container_name: oscam
|
|
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}
|
|
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
|