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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.3 KiB

  1. ![https://linuxserver.io](https://www.linuxserver.io/wp-content/uploads/2015/06/linuxserver_medium.png)
  2. The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring auto-update on startup, easy user mapping and community support. Find us for support at:
  3. * [forum.linuxserver.io](https://forum.linuxserver.io)
  4. * [IRC](https://www.linuxserver.io/index.php/irc/) on freenode at `#linuxserver.io`
  5. * [Podcast](https://www.linuxserver.io/index.php/category/podcast/) covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
  6. # linuxserver/oscam
  7. [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.
  8. ## Usage
  9. ```
  10. docker create \
  11. --name=oscam \
  12. -v <path to data>:/config \
  13. -e PGID=<gid> -e PUID=<uid> \
  14. -p 8888:8888 \
  15. linuxserver/oscam
  16. ```
  17. If you pass through a card reader, add the --device=/path/to/cardreader tag.
  18. **Parameters**
  19. * `-p 1234` - the port(s)
  20. * `-v /config` - explain what lives here
  21. * `-e PGID` for GroupID - see below for explanation
  22. * `-e PUID` for UserID - see below for explanation
  23. It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it <container-name> /bin/bash`.
  24. ### User / Group Identifiers
  25. Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™.
  26. In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below:
  27. ```
  28. $ id <dockeruser>
  29. uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
  30. ```
  31. ## Setting up the application
  32. To set up oscam there are numerous guides on the internet. There are too many scenarios to make a quick guide.
  33. The webinterface is at port 8888.
  34. To pass through a card reader, use the --device=/path/to/cardreader.
  35. ## Info
  36. * Shell access whilst the container is running: `docker exec -it container-name /bin/bash`
  37. * To monitor the logs of the container in realtime: `docker logs -f container-name`
  38. ## Versions
  39. + **14.08.2016:** Initial release.