github.com/pachyderm/pachyderm@v1.13.4/doc/docs/master/reference/pachctl/pachctl_restore.md (about) 1 ## pachctl restore 2 3 Restore Pachyderm state from stdin or an object store. 4 5 ### Synopsis 6 7 Restore Pachyderm state from stdin or an object store. 8 9 ``` 10 pachctl restore [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Restore from a local file: 18 $ pachctl restore < backup 19 20 # Restore from s3: 21 $ pachctl restore -u s3://bucket/backup 22 ``` 23 24 ### Options 25 26 ``` 27 -h, --help help for restore 28 -u, --url string An object storage url (i.e. s3://...) to restore from. 29 ``` 30 31 ### Options inherited from parent commands 32 33 ``` 34 --no-color Turn off colors. 35 -v, --verbose Output verbose logs 36 ``` 37