Roy Moore

Results 75 comments of Roy Moore

1. Will this need support for more than one auth server? or basic support is for a single config? the basic example is : ``` { "auths": { "registry.example.com:5000": {...

Good news. I think I got it working for a single registry: ``` echo "$DOCKER_AUTH_CONFIG" { "auths": { "localhost:5000": { "auth": "..." } }, } >>> from testcontainers.redis import RedisContainer...

I have the code (I tried to keep it to something very minimal), not a built in as `docker-py` only supports simple login and you need to pass all the...

Some documentation on how I tested it: https://gist.github.com/Tranquility2/20652b77a012ee54ae1c8ca021aea1ff

was thinking the same thing :) I had the exact same doubt as its not really a best practice but fits like a glove for a more comprehensive test. Do...

I'm going to go a bit off road here, @skeletorXVI are you familiar with `pytest-xdist` ```--dist loadgroup``` flag? can be very helpful in some cases where you are running `pytest...

Image creation is now based on id as advised by @alexanderankin (tag is optional and not critical to the build flow)

Image cleanup is now optional (defaults to `True` to facilitate the use-cases known to me)