ClaytonNorthey92

Results 32 comments of ClaytonNorthey92

I am indifferent with where the code for canned containers lives, I think a submodule makes sense to try. One concern I do have, it seems like these canned containers...

I think that the `CannedContainer` interface should at least expose a way to get the `Version`, and maybe `SetVersion`? so, if someone wanted to create an [Envoy container](https://hub.docker.com/r/envoyproxy/envoy/tags), their workflow...

oh an sorry, @gianarb yes I agree the `CannedContainer` interface should implement the `Container` interface, so I think it would look something like: ```go type CannedContainer interface { Container Version()...

> Yeah, that's a really good question. Changing the version would be unexpected, as you say, so we can't do that. We're probably locked in to these 'starter' versions at...

@gianarb @bsideup @ronaudinho I believe that Github Actions [doesn't allow a user to put docker into "linux mode"](https://github.com/actions/virtual-environments/issues/1143#issuecomment-651178811), so the behavior of certain functions (such as mounting the docker socket)...

hey @ronaudinho if you want a temporary solution, you could [skip the reaper container](https://github.com/testcontainers/testcontainers-go/blob/1e5e6e25edd168f92c50cb15ad53828580521540/docker.go#L53). You might have to do that in more than one place, but it is an option....

@ronaudinho you're welcome, let me know if you have any trouble with that workaround, I am curious if you uncover other issues

@ronaudinho any trouble with using `skipReaper`?

hey @kunal21 , The reaper container ensures that any container running gets deleted after a time delay, [here is a link to the docker image](https://hub.docker.com/r/testcontainers/ryuk). In the testcontainers project, we...

I dug into this a little, if I am not mistaken, there are two ways you can use `.Destroy`, you could pass in a single record or you could [pass...