Trying to debug a docker in docker setup #7953
Replies: 5 comments 13 replies
-
|
My guess maybe that this is concourse/concourse-docker#76. I'm going to try locally override the entrypoint in my compose file with the patched one. |
Beta Was this translation helpful? Give feedback.
-
|
I am using the yaml file mostly as suggested by https://concourse-ci.org/quick-start.html. Going to switch to the guardian-based one at https://github.com/concourse/concourse-docker/blob/master/docker-compose.yml - and see if that helps. |
Beta Was this translation helpful? Give feedback.
-
|
Did you figure something out? |
Beta Was this translation helpful? Give feedback.
-
|
I also ran into this problem. I was not able to solve it |
Beta Was this translation helpful? Give feedback.
-
|
Try using |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the quick start based docker compose, with the latest image.
I am using a docker-in-docker scenario, and seeing errors.
In my task config:
Docker thing immediately performs a docker run. It's been used on the desktop. This fails in the entrypoint.sh.
made an instrumented version of entrypoint to pinpoint the failure - adding set -x. If fails where it attempts to find cgroup stuff (a bit lower level than I am with docker):
A pipe fails, right where the grep is - since the group field has an empty string:
0::/d9435fbf-a6f5-4215-7b1a-cc7b8ba6be3cIf I add
|| trueinto the pipe, in theory, the next line should handle it being empty. However, it then fails with:When starting up the compose set I do see the following (which may be related):
Concourse version:
version: v7.6.0.Running in docker desktop version Docker Desktop 4.3.2 (72729) on MacOS 11.6.2 (20G314).
Anyone got any ideas on how I resolve this?
Beta Was this translation helpful? Give feedback.
All reactions