summaryrefslogtreecommitdiff
path: root/docker
Commit message (Collapse)AuthorAgeFilesLines
* Remove obsolete, commented out code1024-npipe-supportJoffrey F2016-06-081-3/+0
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Update parse_host and testsJoffrey F2016-06-022-4/+5
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Reorganize docker.transport packageJoffrey F2016-06-026-3/+4
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* npipe support cleanupJoffrey F2016-06-028-44/+15
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Experimental npipe:// supportJoffrey F2016-06-027-1/+332
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* support new Py3.5 Enum signalsThomas Grainger2016-05-191-1/+1
| | | | Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
* support Python 3.5Thomas Grainger2016-05-191-8/+2
| | | | Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
* Add support for creating internal networksJonathan Giannuzzi2016-05-181-1/+8
| | | | Signed-off-by: Jonathan Giannuzzi <jonathan@giannuzzi.be>
* Resolve path traversal in .dockerignore patternsAanand Prasad2016-05-161-0/+3
| | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* Don't set socket timeout if it's already disabled when streamingKevin Frommelt2016-05-101-6/+21
| | | | Signed-off-by: Kevin Frommelt <kevin.frommelt@gmail.com>
* Update ChangeLog and version.py (1.8.1)1.8.1-releaseJoffrey F2016-04-281-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1050 from docker/1044-fix-login-defaultJoffrey F2016-04-281-3/+1
|\ | | | | Let server-side determine which serveraddress to use when unspecified
| * Let server-side determine which serveraddress to use when none is specified1044-fix-login-defaultJoffrey F2016-04-281-3/+1
| | | | | | | | | | | | in login() Signed-off-by: Joffrey F <joffrey@docker.com>
* | Merge pull request #1004 from klj613/allow-equals-character-in-env-fileJoffrey F2016-04-271-1/+1
|\ \ | |/ |/| makes it possible to have '=' in the env file
| * makes it possible to have '=' in the env fileKristian Lewis Jones2016-03-221-1/+1
| | | | | | | | | | | | note that the docker command line flag --env-file also allows '=' in the env file Signed-off-by: Kristian Lewis Jones <klj613@kristianlewisjones.com>
* | Add -dev suffix to versionJoffrey F2016-04-221-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Use backports.ssl_match_hostnameFelix Yan2016-04-082-131/+1
| | | | | | | | | | | | | | | | The py2-ipaddress module unfortunately conflicts with the pypi:ipaddress module, which is in the dependency tree of widely used pyOpenSSL. I think it would be a good idea to use a well maintained backport of the Python 3.5 implementation of match_hostname() instead of duplicating the effort and maintain another. All tests are passing here. Signed-off-by: Felix Yan <felixonmars@archlinux.org>
* | Bump version to 1.8.01.8.0-releaseJoffrey F2016-04-051-1/+1
| | | | | | | | | | | | Add RC bugfixes to the changelog. Signed-off-by: Joffrey F <joffrey@docker.com>
* | Don't raise InvalidConfigError when auth dict doesn't have an 'auth' keyJoffrey F2016-04-051-1/+14
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Bump RC1.8.0-rc5Joffrey F2016-03-311-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Bump RC1.8.0-rc4Joffrey F2016-03-301-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Bump RC1.8.0-rc3Joffrey F2016-03-301-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | flake8 fixesJoffrey F2016-03-291-2/+4
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add match_hostname implementation and monkey-patch for py<3.5Joffrey F2016-03-292-0/+139
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Update release script. Bump to rc21.8.0-rc2Joffrey F2016-03-231-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Set version to RC1Joffrey F2016-03-231-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Merge branch 'master' of https://github.com/dimaspivak/docker-py into ↵Joffrey F2016-03-231-2/+3
|\ \ | | | | | | | | | dimaspivak-master
| * | Add support for changes param to ContainerApiMixin.commitDima Spivak2016-03-211-2/+3
| |/ | | | | | | | | | | docker commit --changes was added to Docker in 1.6.0. Signed-off-by: Dima Spivak <dima@spivak.ch>
* | Merge branch 'gferon-master'Joffrey F2016-03-231-1/+3
|\ \
| * \ Merge branch 'master' of https://github.com/gferon/docker-py into gferon-masterJoffrey F2016-03-231-1/+3
| |\ \
| | * | Add missing CheckDuplicate parameter to /networks/create API callGabriel Féron2016-03-221-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | When set to True, this prevents creating more than one network with the same name (see https://docs.docker.com/engine/reference/api/docker_remote_api_v1.21/#create-a-network) Signed-off-by: Gabriel Féron <feron.gabriel@gmail.com>
* | | | Merge pull request #972 from vitalyisaev2/masterJoffrey F2016-03-231-4/+4
|\ \ \ \ | | | | | | | | | | UnixHTTPConnectionPool initialization error
| * | | | Fix UnixHTTPConnectionPool's superclass initializationVitaly Isaev2016-03-031-4/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Vitaly Isaev <vitalyisaev2@gmail.com>
* | | | | Make gzip encoding optionalJoffrey F2016-03-221-4/+9
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | | | | Fix line-spacing for buildMichael Sander2016-03-221-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Michael Sander <michael.sander@docketalarm.com>
* | | | | Encode the tar ball with gzipMichael Sander2016-03-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gzipping this tarball can greatly reduce the time it takes to send a docker file. Signed-off-by: speedplane <mes65@cornell.edu>
* | | | | Add an option to gzip tar files.Michael Sander2016-03-221-2/+2
| |/ / / |/| | | | | | | | | | | | | | | | | | | This can be used to make building much faster. Signed-off-by: speedplane <mes65@cornell.edu>
* | | | Merge branch 'from_env' of https://github.com/bfirsh/docker-py into ↵Joffrey F2016-03-222-2/+10
|\ \ \ \ | | | | | | | | | | | | | | | bfirsh-from_env
| * | | | Add docker.from_env() shortcutBen Firshman2016-03-152-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A much neater way of getting started with docker-py. Signed-off-by: Ben Firshman <ben@firshman.co.uk>
* | | | | Support OomScoreAdj in host configurationAditya Marella2016-03-221-1/+10
| |_|/ / |/| | | | | | | | | | | Signed-off-by: Aditya Marella <aditya.marella@gmail.com>
* | | | Support passing an alternate environment dict to kwargs_from_envkwargs_from_env_altJoffrey F2016-03-211-4/+6
| |_|/ |/| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | | If tcp host is provided while TLS is enabled, convert to httpstcp-to-https-parsehostJoffrey F2016-03-171-2/+3
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | | Merge pull request #995 from docker/default-version-1.22Joffrey F2016-03-161-1/+1
|\ \ \ | | | | | | | | Update default API version to 1.22
| * | | Update default API version to 1.22default-version-1.22Joffrey F2016-03-161-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | Update engine version used for integration tests IP address configuration tests needed tweaking Signed-off-by: Joffrey F <joffrey@docker.com>
* | | Don't support tmpfs in API version < 1.22Aanand Prasad2016-03-161-0/+2
| | | | | | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | | Clarify error messages when bad values are passed in for tmpfsAanand Prasad2016-03-161-2/+4
| | | | | | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | | Add support for Tmpfs declaration in Hostconfig.Jan Losinski2016-03-161-1/+31
|/ / | | | | | | | | | | | | This adds support for the Tmpfs option introduced in Docker 1.10. See: https://github.com/docker/docker/pull/13587 Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
* | Fix enable_tls issue #984Joffrey F2016-03-111-4/+4
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Merge branch '935' of https://github.com/mdaue/docker-py into mdaue-935Joffrey F2016-03-091-0/+18
|\ \
| * | Add ip4&ip6 (#935) support, network/id/connectMatt Daue2016-03-021-0/+18
| |/ | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Daue <mattdaue@gmail.com> - Implement check to validate API ver is >= 1.22 for new feature - Includes patch @elchris82: Changed network in data dict to IPAMConfig as needed from the API. See https://github.com/docker/docker/issues/20732 - Update unit test for container attach to net - Update integration tests - Add integration test for IP setting Signed-off-by: Matt Daue <mattdaue@gmail.com>