oar-team / oar-docker

Manage a small OAR developpement cluster with docker.
http://oar.imag.fr/wiki:oar-docker
7 stars 6 forks source link

oardocker exec doesn't propagate error code #55

Open bpogodzinski opened 4 years ago

bpogodzinski commented 4 years ago

Screenshot_2020_04_08-13_40_39

This makes using oardocker in CI testing useless.

augu5te commented 4 years ago

You can use following as workaround: docker exec -it $(docker ps | grep frontend | awk '{print $1}') false && echo "Success" || echo "Failure"