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

add red5-arm

This commit is contained in:
kev 2016-07-06 23:05:21 +08:00
parent b6bfe4dc40
commit 92c7a7d4e5
3 changed files with 35 additions and 2 deletions

@ -75,10 +75,12 @@ A collection of delicious docker recipes.
- [x] plex :moneybag:
- [x] portia
- [x] pure-ftpd
- [x] red5
- [x] red5 :+1:
- [x] red5-arm
- [x] redis-arm
- [x] rsyncd
- [x] rtmp
- [x] rtmp-client
- [x] rtmp-server
- [x] samba :+1:
- [x] samba-arm :+1:
- [x] scrapyd :+1:

24
red5/arm/Dockerfile Normal file

@ -0,0 +1,24 @@
#
# Dockerfile for red5-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
ENV RED5_VERSION 1.0.7
ENV RED5_FILE red5-server-${RED5_VERSION}-RELEASE.tar.gz
ENV RED5_URL https://github.com/Red5/red5-server/releases/download/v${RED5_VERSION}-RELEASE/${RED5_FILE}
WORKDIR /opt/red5
RUN set -xe \
&& apk add --no-cache --progress bash curl openjdk7-jre tar \
&& curl -sSL ${RED5_URL} | tar xz --strip 1 \
&& apk del curl tar
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk/jre
ENV PATH $PATH:$JAVA_HOME/bin
EXPOSE 843 1935 5080 5443 8081 8443
ENTRYPOINT ["./red5.sh"]

@ -0,0 +1,7 @@
red5:
image: easypi/red5-arm
ports:
- "1935:1935" # rtmp/e
- "5080:5080" # http
- "8081:8081" # websocket
restart: always