You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
710 B
22 lines
710 B
FROM centos:7
|
|
|
|
# Download filebrowser from
|
|
RUN mkdir -p /opt/filebrowser/{bin,etc,var} \
|
|
&& curl -L -o /tmp/filebrowser.tar.gz https://github.com/filebrowser/filebrowser/releases/download/${FILEBROWSER_RELEASE}/linux-amd64-filebrowser.tar.gz \
|
|
&& tar xvf /tmp/filebrowser.tar.gz -C /opt/filebrowser/bin filebrowser \
|
|
&& chmod 755 /opt/filebrowser/bin/filebrowser \
|
|
&& rm -f /tmp/filebrowser.tar.gz
|
|
|
|
# File Browser configuration file
|
|
ADD filebrowser-config.yaml /opt/filebrowser/etc/config.yaml
|
|
|
|
VOLUME /opt/filebrowser/var
|
|
VOLUME /torrent/incoming
|
|
VOLUME /torrent/download
|
|
|
|
# HTTP Port
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT [ "/opt/filebrowser/bin/filebrowser" ]
|
|
CMD [ "--config", "/opt/filebrowser/etc/config.yaml" ]
|
|
|
|
|