fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,22 @@
---
title: Docker save
---
## Docker save
`docker save` stores a Docker image to a tar archive. It is useful to make an offline backup of an image or transfer an image to a computer in a corporate environment which does not have a direct access to the Internet.
For example, to save the nginx image already in local computer to a file named `nginx-backup.tar`, the following command can be run:
```
docker save -o nginx-backup.tar nginx
```
Or with a specific version:
```
docker save -o nginx-backup.tar nginx:1.15.5
```
#### More Information:
- [Docker CLI docs: save](https://docs.docker.com/engine/reference/commandline/save/)