Using Docker on CoreOS, I have a script that calls:
docker exec ...
This works fine on CoreOS, but I also want to test it on CircleCI . When I try to run this script on CircleCI, I get:
time="2015-06-22T01:14:51Z" level=fatal msg="Error response from daemon: Unsupported: Exec is not supported by the lxc driver" ./tests/run.sh returned exit code 1
Below are the results of testing CircleCI .
I tried to change docker exec to docker --exec-driver native exec , however I am not quite sure what a βdriverβ is, how to change it, or even if it is possible or desirable.
What would be the best way to resolve this error?
source share