Strider-CD / strider-docker-build

Build (and push) Docker images in Strider
16 stars 7 forks source link

Succesfull build hangs #14

Open jasperla opened 9 years ago

jasperla commented 9 years ago

Hi,

It seems this plugin doesn't realise when a build has finished:

# Connecting to Docker: tcp://172.17.42.1:4243 docker_build  -1
$  -1
Step 0 : FROM dockerfile/ubuntu
 ---> e7fc98dc1b07
[...]
Step 6 : EXPOSE 443
 ---> Running in ba82b345b148
 ---> 831b6bf828ae
Removing intermediate container ba82b345b148
Successfully built 831b6bf828ae

and it just hangs there. This is with Docker 1.5.0rc2

knownasilya commented 9 years ago

Which version of this plugin are you using?

jasperla commented 9 years ago

I'm using 1.1.0

davemackintosh commented 9 years ago

This is because the container never actually exits, your dockerfile's RUN is likely the cause of this. Try appending an & to see if that resolves the issue.