bsideup commented on pull request #9626: URL: https://github.com/apache/pulsar/pull/9626#issuecomment-782162662
@lhotari > I've had the impression that it's the reason why TESTCONTAINERS_RYUK_DISABLED=true exists We added the flag because BitBucket did not support mounting Docker socket a few years ago, but, since the builds were ephemeral, Ryuk could be omitted. > Is there a workaround with reusable containers by adding a random label to the container etc so that the container would never get reused but just left behind? Yes. The reusable feature works by hashing the container's definition. If you make the hash unique (e.g. random label / env variable / network alias / network id) then a new container will be started each execution and old containers won't be terminated (one can see it as a disadvantage but in your case this is exactly what you need :D) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
