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

Commit

Permalink
Pull all containers, not just running ones
Browse files Browse the repository at this point in the history
  • Loading branch information
cpuguy83 committed Sep 3, 2014
1 parent b370fc7 commit 70ef4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func setup(client docker.Docker) *volStore {
var volumes = &volStore{
s: make(map[string]*Volume),
}
containers, err := client.FetchAllContainers()
containers, err := client.FetchAllContainers(true)
if err != nil {
fmt.Println(err)
os.Exit(1)
Expand Down

0 comments on commit 70ef4ab

Please sign in to comment.