From 363f7e6918e32316a0c4afa2240d17a8ed074c8c Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 16 Mar 2025 20:11:42 -0700 Subject: [PATCH] Adjust some entrypoints to include invocation to dockerd-rootless. --- DIND/Agent/entrypoint.sh | 2 ++ DIND/Wings/Dockerfile | 2 +- DIND/Wings/entrypoint.sh | 4 +++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/DIND/Agent/entrypoint.sh b/DIND/Agent/entrypoint.sh index 3dac03e..6d54855 100644 --- a/DIND/Agent/entrypoint.sh +++ b/DIND/Agent/entrypoint.sh @@ -1,5 +1,7 @@ #!/bin/bash +/usr/local/sbin/dockerd-entrypoint.sh + if [ -d /keys ] then echo "Installing SSH Keys..." diff --git a/DIND/Wings/Dockerfile b/DIND/Wings/Dockerfile index 6eb6017..4ee8fd8 100644 --- a/DIND/Wings/Dockerfile +++ b/DIND/Wings/Dockerfile @@ -8,4 +8,4 @@ RUN chmod u+x /usr/local/bin/wings ADD ./entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh -CMD ["/usr/local/bin/wings"] \ No newline at end of file +CMD ["/entrypoint.sh"] \ No newline at end of file diff --git a/DIND/Wings/entrypoint.sh b/DIND/Wings/entrypoint.sh index d0360b2..002e5da 100644 --- a/DIND/Wings/entrypoint.sh +++ b/DIND/Wings/entrypoint.sh @@ -1,2 +1,4 @@ #!/bin/bash -wings \ No newline at end of file +/usr/local/sbin/dockerd-entrypoint.sh + +/usr/local/bin/wings \ No newline at end of file