mirror of
https://github.com/cupcakearmy/livestream.git
synced 2024-12-21 23:56:30 +00:00
8 lines
154 B
Docker
8 lines
154 B
Docker
|
FROM alpine:3.7
|
||
|
|
||
|
RUN apk add --no-cache openssl ca-certificates wget unzip nginx nginx-mod-rtmp ffmpeg
|
||
|
|
||
|
VOLUME [ "/stream" ]
|
||
|
|
||
|
CMD nginx -g 'daemon off;'
|