Felipe Ruhland

Results 7 comments of Felipe Ruhland

Hi @Manu10744 I couldn't reproduce that issue. Could you send more information about your docker version? The output from the `docker version` would be great. Have a nice day :)

The code looks good.

Hi @ns-cweber. This change was confusing, and the official package is `docker`. @shin- can you edit [pypi](https://pypi.org/project/docker-py/) page to redirect to the correct package or something like that? Thanks.

Hi @fjhaveri. Have you tried ``pip install --upgrade docker``? How is your ``pip list``?

Hi @Dreamsorcerer That is a great suggestion. I´m going to set up `mypy` to the test suite and add typing for future changes. Thanks and have a nice day :)

Hi @francoisihry @afshin2020 @toxicrecker The container output is available by the [`attach`](https://docker-py.readthedocs.io/en/stable/containers.html#docker.models.containers.Container.attach) method. ```py >>> import docker >>> client = docker.from_env() >>> container = client.containers.run('python:alpine', '''python -c "import time; print('hello');...