Pārlūkot izejas kodu

Add compact action to command-line reference documentation.

Dan Helfman 3 gadi atpakaļ
vecāks
revīzija
cbf7284f64
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      docs/Dockerfile

+ 1 - 1
docs/Dockerfile

@@ -4,7 +4,7 @@ COPY . /app
 RUN apk add --no-cache py3-ruamel.yaml py3-ruamel.yaml.clib
 RUN pip install --no-cache /app && generate-borgmatic-config && chmod +r /etc/borgmatic/config.yaml
 RUN borgmatic --help > /command-line.txt \
-    && for action in init prune create check extract export-tar mount umount restore list info borg; do \
+    && for action in init prune compact create check extract export-tar mount umount restore list info borg; do \
            echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \
            && borgmatic "$action" --help >> /command-line.txt; done