docker-*: add German translation (#6833)

This commit is contained in:
Joachim Schwarm
2021-10-17 06:36:30 +02:00
committed by GitHub
parent 977d4212d5
commit 32580f24e6
24 changed files with 592 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
# docker save
> Exportiere eines oder mehrere Docker Images in ein Archiv.
> Weitere Informationen: <https://docs.docker.com/engine/reference/commandline/save/>.
- Speichere ein Image über die Standardausgabe in ein Tar-Archiv:
`docker save {{image}}:{{tag}} > {{pfad/zur/datei.tar}}`
- Speichere ein Image in ein Tar-Archiv:
`docker save --output {{pfad/zur/datei.tar}} {{image}}:{{tag}}`
- Speichere alle Tags eines Images:
`docker save --output {{pfad/zur/datei.tar}} {{image_name}}`
- Speichere nur bestimmte Tags eines Images:
`docker save --output {{pfad/zur/datei.tar}} {{image_name:tag1 image_name:tag2 ...}}`