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

Merged
luke merged 3 commits from migration into main 2026-01-04 21:20:21 +00:00
Showing only changes of commit 929ff960d1 - Show all commits

View File

@@ -3,7 +3,7 @@ LABEL maintainer="Luke Tainton <luke@tainton.uk>"
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
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 ${DOCUMIZEPORT}"]