mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
27 lines
541 B
Docker
27 lines
541 B
Docker
FROM epicmorg/edge
|
|
|
|
#ARG TORRSERVER_LINK=https://releases.yourok.ru/torr/server/TorrServer-linux-amd64
|
|
ARG TORRSERVER_LINK=https://github.com/YouROK/TorrServer/releases/latest/download/TorrServer-linux-amd64
|
|
|
|
WORKDIR /opt
|
|
|
|
ADD $TORRSERVER_LINK torrServer
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get upgrade -y && \
|
|
export GODEBUG=madvdontneed=1 && \
|
|
chmod +x torrServer
|
|
|
|
ENV UI_PORT 8090
|
|
ENV UPNP_PORT 32000
|
|
|
|
EXPOSE \
|
|
$UI_PORT \
|
|
$UPNP_PORT \
|
|
$UPNP_PORT/udp
|
|
|
|
VOLUME \
|
|
/config
|
|
|
|
ENTRYPOINT /opt/torrServer --port $UI_PORT -path /config |