From 6055918907ddc8d947048d02eed20932644f7596 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 26 Jan 2023 16:11:41 -0800 Subject: [PATCH] Upgrade documentation image dependencies. --- docs/Dockerfile | 6 +++--- docs/how-to/backup-your-databases.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index 5827193a3..ef29da82e 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.16.0 as borgmatic +FROM alpine:3.17.1 as borgmatic COPY . /app RUN apk add --no-cache py3-pip py3-ruamel.yaml py3-ruamel.yaml.clib @@ -8,7 +8,7 @@ RUN borgmatic --help > /command-line.txt \ echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \ && borgmatic "$action" --help >> /command-line.txt; done -FROM node:18.4.0-alpine as html +FROM node:19.5.0-alpine as html ARG ENVIRONMENT=production @@ -27,7 +27,7 @@ COPY . /source RUN NODE_ENV=${ENVIRONMENT} npx eleventy --input=/source/docs --output=/output/docs \ && mv /output/docs/index.html /output/index.html -FROM nginx:1.22.0-alpine +FROM nginx:1.22.1-alpine COPY --from=html /output /usr/share/nginx/html COPY --from=borgmatic /etc/borgmatic/config.yaml /usr/share/nginx/html/docs/reference/config.yaml diff --git a/docs/how-to/backup-your-databases.md b/docs/how-to/backup-your-databases.md index ff48ca6f7..1c7397bea 100644 --- a/docs/how-to/backup-your-databases.md +++ b/docs/how-to/backup-your-databases.md @@ -240,7 +240,7 @@ To restore all databases: borgmatic restore --archive host-2023-... --database all ``` -Or just omit the `--database` flag entirely: +Or omit the `--database` flag entirely: ```bash