Skip to content

Commit

Permalink
Merge pull request #4220 from andytank123/master
Browse files Browse the repository at this point in the history
Add support for Docker images from custom registries
  • Loading branch information
robbyrussell committed Aug 31, 2015
2 parents ccaaa99 + c3fbe4d commit adff369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/docker/_docker
Expand Up @@ -27,7 +27,7 @@ __docker_all_containers() {
# output a selectable list of all docker images
__docker_images() {
declare -a img_cmd
img_cmd=($(docker images | awk 'NR>1{print $1}'))
img_cmd=($(docker images | awk 'NR>1{print $1}'| sed 's/:/\\:/g'))
_describe 'images' img_cmd
}

Expand Down

0 comments on commit adff369

Please sign in to comment.