2023-04-10 22:26:54 +01:00
|
|
|
FROM docker.io/alpine:3.17.1 as borgmatic
|
2019-05-20 19:41:39 +01:00
|
|
|
|
|
|
|
COPY . /app
|
2022-06-16 23:22:59 +01:00
|
|
|
RUN apk add --no-cache py3-pip py3-ruamel.yaml py3-ruamel.yaml.clib
|
2022-02-08 20:52:45 +00:00
|
|
|
RUN pip install --no-cache /app && generate-borgmatic-config && chmod +r /etc/borgmatic/config.yaml
|
2019-06-23 06:04:56 +01:00
|
|
|
RUN borgmatic --help > /command-line.txt \
|
2023-03-09 00:09:41 +00:00
|
|
|
&& for action in rcreate transfer create prune compact check extract export-tar mount umount restore rlist list rinfo info break-lock borg; do \
|
2019-06-23 06:04:56 +01:00
|
|
|
echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \
|
|
|
|
&& borgmatic "$action" --help >> /command-line.txt; done
|
2019-05-20 19:41:39 +01:00
|
|
|
|
2023-04-10 22:26:54 +01:00
|
|
|
FROM docker.io/node:19.5.0-alpine as html
|
2019-05-20 19:41:39 +01:00
|
|
|
|
2019-10-14 21:13:41 +01:00
|
|
|
ARG ENVIRONMENT=production
|
|
|
|
|
2019-05-20 19:41:39 +01:00
|
|
|
WORKDIR /source
|
|
|
|
|
|
|
|
RUN npm install @11ty/eleventy \
|
|
|
|
@11ty/eleventy-plugin-syntaxhighlight \
|
|
|
|
@11ty/eleventy-plugin-inclusive-language \
|
2020-08-21 22:27:47 +01:00
|
|
|
@11ty/eleventy-navigation \
|
2023-03-23 09:15:23 +00:00
|
|
|
eleventy-plugin-code-clipboard \
|
2019-05-20 19:41:39 +01:00
|
|
|
markdown-it \
|
|
|
|
markdown-it-anchor \
|
|
|
|
markdown-it-replace-link
|
|
|
|
COPY --from=borgmatic /etc/borgmatic/config.yaml /source/docs/_includes/borgmatic/config.yaml
|
|
|
|
COPY --from=borgmatic /command-line.txt /source/docs/_includes/borgmatic/command-line.txt
|
|
|
|
COPY . /source
|
2019-10-14 21:13:41 +01:00
|
|
|
RUN NODE_ENV=${ENVIRONMENT} npx eleventy --input=/source/docs --output=/output/docs \
|
2019-05-20 19:41:39 +01:00
|
|
|
&& mv /output/docs/index.html /output/index.html
|
|
|
|
|
2023-04-10 22:26:54 +01:00
|
|
|
FROM docker.io/nginx:1.22.1-alpine
|
2019-05-20 19:41:39 +01:00
|
|
|
|
|
|
|
COPY --from=html /output /usr/share/nginx/html
|
|
|
|
COPY --from=borgmatic /etc/borgmatic/config.yaml /usr/share/nginx/html/docs/reference/config.yaml
|