mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:42 +02:00
add live555
This commit is contained in:
parent
9cd79eb150
commit
131f81a118
@ -58,6 +58,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] hubot
|
- [x] hubot
|
||||||
- [x] influxdb
|
- [x] influxdb
|
||||||
- [x] influxdb-arm
|
- [x] influxdb-arm
|
||||||
|
- [x] live555
|
||||||
- [x] mariadb
|
- [x] mariadb
|
||||||
- [x] mariadb-arm
|
- [x] mariadb-arm
|
||||||
- [x] minidlna
|
- [x] minidlna
|
||||||
|
16
live555/Dockerfile
Normal file
16
live555/Dockerfile
Normal 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
24
live555/README.md
Normal 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/
|
8
live555/docker-compose.yml
Normal file
8
live555/docker-compose.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
live555:
|
||||||
|
image: vimagick/live555
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
- "554:554"
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
restart: always
|
Loading…
Reference in New Issue
Block a user