Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
bae428a8a3 | |||
0e91e3adee | |||
d317624ea5 | |||
68f2d36e67 | |||
f889c01563 | |||
a5f359c7f8 | |||
ed6c6bbb98 | |||
023a7599b9 |
23
Dockerfile
23
Dockerfile
@ -1,4 +1,4 @@
|
|||||||
FROM lsiobase/alpine
|
FROM lsiobase/alpine:3.6
|
||||||
MAINTAINER saarg
|
MAINTAINER saarg
|
||||||
|
|
||||||
# set version label
|
# set version label
|
||||||
@ -6,16 +6,8 @@ ARG BUILD_DATE
|
|||||||
ARG VERSION
|
ARG VERSION
|
||||||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||||
|
|
||||||
# install runtime packages
|
|
||||||
RUN \
|
|
||||||
apk add --no-cache \
|
|
||||||
libcrypto1.0 \
|
|
||||||
libssl1.0 \
|
|
||||||
libusb \
|
|
||||||
pcsc-lite \
|
|
||||||
pcsc-lite-libs && \
|
|
||||||
|
|
||||||
# install build packages
|
# install build packages
|
||||||
|
RUN \
|
||||||
apk add --no-cache --virtual=build-dependencies \
|
apk add --no-cache --virtual=build-dependencies \
|
||||||
curl \
|
curl \
|
||||||
gcc \
|
gcc \
|
||||||
@ -23,11 +15,20 @@ RUN \
|
|||||||
libusb-dev \
|
libusb-dev \
|
||||||
linux-headers \
|
linux-headers \
|
||||||
make \
|
make \
|
||||||
openssl-dev \
|
libressl-dev \
|
||||||
pcsc-lite-dev \
|
pcsc-lite-dev \
|
||||||
subversion \
|
subversion \
|
||||||
tar && \
|
tar && \
|
||||||
|
|
||||||
|
# install runtime packages
|
||||||
|
apk add --no-cache \
|
||||||
|
libcrypto1.0 \
|
||||||
|
libssl1.0 \
|
||||||
|
libusb \
|
||||||
|
pcsc-lite \
|
||||||
|
pcsc-lite-libs && \
|
||||||
|
|
||||||
|
|
||||||
# compile oscam from source
|
# compile oscam from source
|
||||||
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
|
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
|
||||||
cd /tmp/oscam-svn && \
|
cd /tmp/oscam-svn && \
|
||||||
|
22
README.md
22
README.md
@ -2,6 +2,8 @@
|
|||||||
[forumurl]: https://forum.linuxserver.io
|
[forumurl]: https://forum.linuxserver.io
|
||||||
[ircurl]: https://www.linuxserver.io/irc/
|
[ircurl]: https://www.linuxserver.io/irc/
|
||||||
[podcasturl]: https://www.linuxserver.io/podcast/
|
[podcasturl]: https://www.linuxserver.io/podcast/
|
||||||
|
[appurl]: http://www.streamboard.tv/oscam/
|
||||||
|
[hub]: https://hub.docker.com/r/linuxserver/oscam/
|
||||||
|
|
||||||
[][linuxserverurl]
|
[][linuxserverurl]
|
||||||
|
|
||||||
@ -11,13 +13,11 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
|
|||||||
* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
|
* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
|
||||||
|
|
||||||
# linuxserver/oscam
|
# linuxserver/oscam
|
||||||
[](https://microbadger.com/images/linuxserver/oscam "Get your own version badge on microbadger.com")[](https://microbadger.com/images/linuxserver/oscam "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-oscam/)
|
[](https://microbadger.com/images/linuxserver/oscam "Get your own version badge on microbadger.com")[](https://microbadger.com/images/linuxserver/oscam "Get your own image badge on microbadger.com")[][hub][][hub][](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-oscam/)
|
||||||
[hub]: https://hub.docker.com/r/linuxserver/oscam/
|
|
||||||
|
|
||||||
[Oscam][oscamurl] is an Open Source Conditional Access Module software used for descrambling DVB transmissions using smart cards. It's both a server and a client.
|
[Oscam][appurl] is an Open Source Conditional Access Module software used for descrambling DVB transmissions using smart cards. It's both a server and a client.
|
||||||
|
|
||||||
[][oscamurl]
|
[][appurl]
|
||||||
[oscamurl]: http://www.streamboard.tv/oscam/
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@ -31,7 +31,13 @@ docker create \
|
|||||||
linuxserver/oscam
|
linuxserver/oscam
|
||||||
```
|
```
|
||||||
|
|
||||||
**Parameters**
|
## Parameters
|
||||||
|
|
||||||
|
`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
|
||||||
|
For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container.
|
||||||
|
So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080
|
||||||
|
http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.`
|
||||||
|
|
||||||
|
|
||||||
* `-p 8888` - the port(s)
|
* `-p 8888` - the port(s)
|
||||||
* `-v /config` - where oscam should store config files and logs
|
* `-v /config` - where oscam should store config files and logs
|
||||||
@ -94,6 +100,8 @@ The web interface is at port 8888.
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
+ **14-10-16:** Add version layer information.
|
+ **28.05.2017:** Rebase to alpine 3.6.
|
||||||
|
+ **09.02.2017:** Rebase to alpine 3.5.
|
||||||
|
+ **14.10.2016:** Add version layer information.
|
||||||
+ **02.10.2016:** Add info on passing through devices to README.
|
+ **02.10.2016:** Add info on passing through devices to README.
|
||||||
+ **25.09.2016:** Initial release.
|
+ **25.09.2016:** Initial release.
|
||||||
|
Reference in New Issue
Block a user