tox-docker icon indicating copy to clipboard operation
tox-docker copied to clipboard

A tox plugin to run one or more Docker containers during tests

Results 29 tox-docker issues
Sort by recently updated
recently updated
newest added

It would be helpful to specify the command that should be used for running the container. [This is the example image from my use case](https://github.com/istopwg/ippsample/blob/master/Dockerfile) The container exposes several commands...

tox v4 is getting ready and we'd like to make sure this plugin is supported from day 1, we're collecting feature gaps for this under https://github.com/tox-dev/tox/issues/1974. Would be great if...

I'm using this code on my `tox.ini`: ```dosini [docker:postgres] image=postgres:13 environment= POSTGRES_PASSWORD=postgres ports=5432:5432/tcp healthcheck_cmd = pg_isready --username postgres healthcheck_retries = 30 healthcheck_timeout = 1 healthcheck_interval = 1 healthcheck_start_period = 1...

I do have a `DOCKER_HOST=ssh://[email protected]` which is correctly used by all docker tools, including the docker-py python library. Still, tox-docker does not seem to rely on it and fails to...

The default docker port mapping creates a tcp portmap, when the protocol is not defined. Currently tox-docker requires a protocol definition, though ideally it would behave similarly to docker.

We're seeing intermittent failures when using tox-docker 2.0.0: ``` 2021-02-03 10:50:52 GMT+00:00 - Traceback (most recent call last): 2021-02-03 10:50:52 GMT+00:00 - File "/usr/local/lib/python3.6/site-packages/docker/api/client.py", line 268, in _raise_for_status 2021-02-03 10:50:52...

Loving the new `--docker-dont-stop` would be really useful if there was a switch to clean up the containers left behind.

Have had a little bit of a trouble getting `elastic/apm-server:7.7.0` image working with tox. One problem I am not able to workaround easily is configuration by environment variables using the...