-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
Just as a suggestion ...
In docker-compose.yml one would need to add a valid local.json file.
volumes:
- ./data/local.json:/opt/hls-proxy/local.json
FROM alpine:3.15
ENV HLS_PROXY_VERSION=8.0.7
RUN apk add unzip wget \
&& wget -O /tmp/hlsproxy.zip https://www.hls-proxy.com/downloads/${HLS_PROXY_VERSION}/hls-proxy-${HLS_PROXY_VERSION}.alpine-x64.zip -O /tmp/hls-proxy.zip \
&& mkdir -p /opt/hls-proxy \
&& unzip /tmp/hls-proxy.zip -d /opt/hls-proxy \
&& chmod +x /opt/hls-proxy/hls-proxy \
&& /opt/hls-proxy/hls-proxy -address 0.0.0.0 -port 8085 -save -quit \
&& rm /tmp/hls-proxy.zip
EXPOSE 8085
# serve hls proxy
ENTRYPOINT ["/opt/hls-proxy/hls-proxy"]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels