We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These two lines were removed from the example in the README:
source /docker-lib.sh start_docker
But without them, any calls to docker functions cause the following error:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Since the entrypoint.sh script isn't used when a concourse task is run, these lines need to be in the task script.
entrypoint.sh
The text was updated successfully, but these errors were encountered:
Good catch, thanks.
Sorry, something went wrong.
Also, since the docker-lib.sh script now has bash dependencies (e.g. declare), I think that the example should use bash, not sh.
docker-lib.sh
bash
declare
sh
Opened #16
No branches or pull requests
These two lines were removed from the example in the README:
source /docker-lib.sh start_docker
But without them, any calls to docker functions cause the following error:
Since the
entrypoint.sh
script isn't used when a concourse task is run, these lines need to be in the task script.The text was updated successfully, but these errors were encountered: