Rework docker setup

This commit is contained in:
eikek
2021-05-31 00:07:11 +02:00
parent c0402b1f92
commit b122d9eab0
8 changed files with 326 additions and 0 deletions

View File

@ -0,0 +1,18 @@
FROM alpine:latest
ARG version=
ARG restserver_url=
RUN apk add --no-cache openjdk11 bash tzdata
WORKDIR /opt
RUN wget ${restserver_url:-https://github.com/eikek/docspell/releases/download/v$version/docspell-restserver-$version.zip} && \
unzip docspell-restserver-*.zip && \
rm docspell-restserver-*.zip && \
ln -snf docspell-restserver-* docspell-restserver
ENTRYPOINT ["/opt/docspell-restserver/bin/docspell-restserver"]
EXPOSE 7880
HEALTHCHECK --interval=1m --timeout=10s --retries=2 --start-period=30s \
CMD wget --spider http://localhost:7880