1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00

add red5-server

This commit is contained in:
kev 2016-05-17 15:08:00 +08:00
parent 16548d795f
commit 991bc9de03
3 changed files with 30 additions and 0 deletions

@ -89,6 +89,7 @@ A collection of delicious docker recipes.
- [x] privoxy
- [x] proxyhub
- [x] pure-ftpd
- [x] red5-server
- [x] redis-arm
- [x] revive
- [x] routersploit

21
red5-server/Dockerfile Normal file

@ -0,0 +1,21 @@
#
# Dockerfile for red5-server
#
FROM java:8
MAINTAINER kev <noreply@easypi.info>
ENV RED5_VERSION 1.0.7
WORKDIR /opt/red5-server
RUN set -xe \
&& apt-get update \
&& apt-get install -y curl \
&& curl -sSL https://github.com/Red5/red5-server/releases/download/v${RED5_VERSION}-RELEASE/red5-server-${RED5_VERSION}-RELEASE.tar.gz | tar xz --strip 1 \
&& apt-get remove -y curl \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 843 1935 5080 5443 8088 8443 9999
ENTRYPOINT ["./red5.sh"]

8
red5-server/README.md Normal file

@ -0,0 +1,8 @@
red5-server
===========
![](https://badge.imagelayers.io/vimagick/red5-server:latest.svg)
[Red5][1] is an Open Source Flash Server written in Java.
[1]: https://github.com/Red5/red5-server