add live555

This commit is contained in:
kev 2016-07-04 21:56:20 +08:00
parent 9cd79eb150
commit 131f81a118
4 changed files with 49 additions and 0 deletions

View File

@ -58,6 +58,7 @@ A collection of delicious docker recipes.
- [x] hubot
- [x] influxdb
- [x] influxdb-arm
- [x] live555
- [x] mariadb
- [x] mariadb-arm
- [x] minidlna

16
live555/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
#
# Dockerfile for live555
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& wget -qP /usr/local/bin/ http://www.live555.com/mediaServer/linux/live555MediaServer \
&& chmod +x /usr/local/bin/live555MediaServer
WORKDIR /data
EXPOSE 80 554
ENTRYPOINT ["live555MediaServer"]

24
live555/README.md Normal file
View File

@ -0,0 +1,24 @@
live555
=======
![](https://badge.imagelayers.io/vimagick/live555:latest.svg)
The [LIVE555 Media Server][1] is a complete RTSP server application. It can
stream several kinds of media file (which must be stored in the current working
directory - i.e., the directory from which you launch the application - or a
subdirectory.)
## docker-compose.yml
```yaml
live555:
image: vimagick/live555
ports:
- "8080:80"
- "554:554"
volumes:
- ./data:/data
restart: always
```
[1]: http://www.live555.com/mediaServer/

View File

@ -0,0 +1,8 @@
live555:
image: vimagick/live555
ports:
- "8080:80"
- "554:554"
volumes:
- ./data:/data
restart: always