feat(migration): add initial configuration files and Docker setup for Documize (#4)

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2026-01-04 21:20:20 +00:00
parent 295ac208f6
commit d8aa3e0478
12 changed files with 239 additions and 7 deletions

View File

@@ -1,9 +1,10 @@
FROM alpine:latest
FROM alpine:3.23
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/documize-docker"
ARG DOCUMIZE_VERSION=v4.2.3
RUN apk add --no-cache curl
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/documize-docker"
ARG DOCUMIZE_VERSION=v5.14.0
ENV DOCUMIZEPORT=5001
RUN apk add --no-cache curl=8.17.0-r0
WORKDIR /opt
RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize
ENTRYPOINT ["./documize -port 80"]
EXPOSE 80
ENTRYPOINT ["./documize -port ${DOCUMIZEPORT}"]
EXPOSE ${DOCUMIZEPORT}