summaryrefslogtreecommitdiff
path: root/docker/api/exec_api.py
Commit message (Collapse)AuthorAgeFilesLines
* fix exec_start() documentationCorentin Henry2018-11-281-2/+2
| | | | Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
* implement stream demultiplexing for exec commandsCorentin Henry2018-11-271-5/+8
| | | | | | fixes https://github.com/docker/docker-py/issues/1952 Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
* Refuse API version < 1.21 ; Remove associated code pathscleanup_deprecatedJoffrey F2018-01-311-12/+0
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Use config.json for detachKeysFumiaki MATSUSHIMA2018-01-301-1/+11
| | | | Signed-off-by: Fumiaki Matsushima <mtsmfm@gmail.com>
* Bump default API version to 1.35Joffrey F2018-01-261-1/+9
| | | | | | | | | Add ContainerSpec.isolation support Add until support in logs Add condition support in wait Add workdir support in exec_create Signed-off-by: Joffrey F <joffrey@docker.com>
* Style fixes. Copied docs to APIClient as wellJoffrey F2017-11-071-1/+4
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Fix handling of non-multiplexed (TTY) streams over upgraded socketsJoffrey F2017-08-171-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Update check_resource decorator to account for new resource namesJoffrey F2017-06-151-2/+2
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Modernize exec_api.pyJoffrey F2017-05-021-5/+5
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* exec: add support for `Env`Tomas Tomecek2017-04-291-2/+14
| | | | Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
* exec: fix running with detach=TrueTomas Tomecek2016-11-291-1/+2
| | | | | | Fixes #1271 Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
* Add docstrings to low-level APIBen Firshman2016-11-221-0/+62
| | | | Signed-off-by: Ben Firshman <ben@firshman.co.uk>
* Read from socket after sending TCP upgrade headers.Joffrey F2016-07-131-4/+2
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add hijack hints for non-detached exec api callsDavid Gageot2016-07-131-1/+9
| | | | Signed-off-by: David Gageot <david@gageot.net>
* allow interactive execTomas Tomecek2015-12-031-4/+11
| | | | Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
* Support unicode commands.Daniel Nephin2015-10-261-3/+1
| | | | Signed-off-by: Daniel Nephin <dnephin@gmail.com>
* Generic skip decorator for low API version accessible to all testsJoffrey F2015-09-161-12/+6
| | | | | | | | | | Add simpler version comparison functions Add decorator to enforce minimum version in API methods Fix utils imports Add minimum_version decorators on API methods that needed it GroupAdd test requires API version >= 1.20 Signed-off-by: Joffrey F <joffrey@docker.com>
* Split different APIs into several mixins for clarity / easier maintenanceJoffrey F2015-09-111-0/+76
Signed-off-by: Joffrey F <joffrey@docker.com>