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,24 @@
---
title: Docker load
---
## Docker load
`docker load` restores a Docker image from a tar archive.
It is mostly used in conjunction with `docker save` command to transfer a Docker image without using Docker Hub or another registry.
To load an image from a file named `nginx-backup.tar`, the following command can be run:
```
docker load -i nginx-backup.tar
```
This command also recognizes gzip, bzip2 and xz compression, and decompresses the file automatically. Therefore, it can be used even without decompressing manually:
```
docker load -i nginx-backup.tar.gz
```
#### More Information:
- [Docker CLI docs: load](https://docs.docker.com/engine/reference/commandline/load/)