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