From 5d2c5bcb2b93a1534f7bb438aa0f495a64578173 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Thu, 17 Oct 2024 13:00:53 -0300 Subject: [PATCH] Add note about Docker Compose being unsupported --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 8b3f1c6..4a7044b 100644 --- a/README.md +++ b/README.md @@ -87,3 +87,9 @@ ARG DOND_SHIM_PATH="/usr/local/bin/dond" ADD "https://github.com/felipecrs/docker-on-docker-shim/raw/v${DOND_SHIM_VERSION}/dond" "${DOND_SHIM_PATH}" RUN chmod 755 "${DOND_SHIM_PATH}" ``` + +## Docker Compose + +Unfortunately, using the shim through Docker Compose is not possible, since Docker Compose interacts with the docker daemon directly and does not call the `docker` cli. + +It should be theoretically possible to develop a shim for Docker Compose, but I have not done it yet.