Skip to content
This repository has been archived by the owner on Jan 7, 2018. It is now read-only.

Commit

Permalink
Update readme and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
cpuguy83 committed Sep 5, 2014
1 parent 5617543 commit 1a9fb53
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ Commands:
* **export** - Creates an archive of the volume and outputs it to stdout. You can
optionally pause all running containers (which are using the requested volume)
before exporting the volume using `--pause`
* **import** - Import a tarball generated by the export command from stdin to a
specified container. Be default it will import it into the same directory path
the volume existed on (eg, if it came from `/data`, it will put it into `/data`)
You can optionally specify a different volume path, but a volume must exist at
that path already or you will get an error

```
NAME:
Expand All @@ -84,7 +89,7 @@ USAGE:
docker-volumes [global options] command [command options] [arguments...]
VERSION:
0.1.0
1.0.0
AUTHOR:
Brian Goff - <cpuguy83@gmail.com>
Expand All @@ -94,6 +99,7 @@ COMMANDS:
inspect Get details of volume
rm Delete a volume
export Export a as a tarball. Prints to stdout
import Import a tarball produced by the export command the specified container
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func main() {
app.Name = "docker-volumes"
app.Usage = "The missing volume manager for Docker"
app.Action = volumeList
app.Version = "0.1.0"
app.Version = "1.0.0"
app.Author = "Brian Goff"
app.Email = "cpuguy83@gmail.com"
app.Flags = []cli.Flag{
Expand Down

0 comments on commit 1a9fb53

Please sign in to comment.