-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
Jenkins 2.59
Docker 1.17
Ubuntu 14.04
If you pull a image from a private registry you can't tag it or run it.
```
docker.withRegistry("https://docker.bla.de"){
r_image = docker.image("${docker_image_name}:${dev_image_tag}")
r_image.pull()
r_image.tag("current")
}
```
The example above doesn't work. I did a pull request to fix this behavior.