Browse Source

Upgrade documentation image dependencies.

Dan Helfman 2 năm trước cách đây
mục cha
commit
6055918907
2 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 3 3
      docs/Dockerfile
  2. 1 1
      docs/how-to/backup-your-databases.md

+ 3 - 3
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

+ 1 - 1
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