Files
filebrowser/Dockerfile
T

19 lines
458 B
Docker
Raw Normal View History

FROM alpine:latest
2021-03-21 12:30:48 +01:00
RUN apk --update add ca-certificates \
mailcap \
curl \
jq
COPY healthcheck.sh /healthcheck.sh
RUN chmod +x /healthcheck.sh # Make the script executable
2021-03-21 12:30:48 +01:00
HEALTHCHECK --start-period=2s --interval=5s --timeout=3s \
CMD /healthcheck.sh || exit 1
2018-06-06 21:02:00 +01:00
VOLUME /srv
EXPOSE 80
COPY docker_config.json /.filebrowser.json
COPY filebrowser /filebrowser
2018-06-06 21:02:00 +01:00
ENTRYPOINT [ "/filebrowser" ]