summaryrefslogtreecommitdiff
path: root/docker
Commit message (Collapse)AuthorAgeFilesLines
* Support absolute paths for in-context DockerfilesJoffrey F2018-04-121-2/+4
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Properly handle relative Dockerfile paths and Dockerfile on different drivesJoffrey F2018-03-301-9/+20
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* dev versionJoffrey F2018-03-291-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Bump 3.2.03.2.0Joffrey F2018-03-291-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add methods for /distribution/<name>/json endpointJoffrey F2018-03-292-1/+127
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Improve extra_files override checkJoffrey F2018-03-291-1/+2
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Move build utils to appropriate fileJoffrey F2018-03-293-93/+93
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Support building with Dockerfile outside of contextJoffrey F2018-03-293-7/+37
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add isolation param to buildJoffrey F2018-03-292-1/+12
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Remove redundant single-socket select callJoffrey F2018-03-292-3/+1
| | | | | | Clean up + use pytest-timeout Signed-off-by: Joffrey F <joffrey@docker.com>
* Allow cancelling the streams from other threadsViktor Adam2018-03-294-10/+92
| | | | Signed-off-by: Viktor Adam <rycus86@gmail.com>
* Add test for container list with sparse=TrueJoffrey F2018-03-291-9/+21
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add sparse argument to DockerClient.containers.list().Matthieu Nottale2018-03-291-2/+9
| | | | Signed-off-by: Matthieu Nottale <matthieu.nottale@docker.com>
* Add close() method to DockerClient.Matthieu Nottale2018-03-291-0/+4
| | | | Signed-off-by: Matthieu Nottale <matthieu.nottale@docker.com>
* Bump 3.1.43.1.4Joffrey F2018-03-211-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Don't descend into symlinks when building context tarJoffrey F2018-03-211-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Bump 3.1.33.1.3Joffrey F2018-03-201-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Bump 3.1.2Joffrey F2018-03-201-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Updates docs for rename of `name` to `repository`James2018-03-201-1/+1
| | | | Signed-off-by: James Meakin <jamesmeakin@gmail.com>
* Use same split rules for Dockerfile as other include/exclude patternsJoffrey F2018-03-201-2/+5
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Bump 3.1.13.1.1-releaseJoffrey F2018-03-051-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Fix flake8 caseWanzhi Du2018-03-051-1/+2
| | | | Signed-off-by: Wanzhi Du <wanzhi09@gmail.com>
* Ignore comment line from the .dockerignore fileWanzhi Du2018-03-051-1/+1
| | | | | | | | | This fixed the bug that test comment line in .dockerignore file as ignore rule bug. Add test for "# comment" patterns in .dockerignore. Signed-off-by: Wanzhi Du <wanzhi09@gmail.com>
* Workaround requests resolving our unix socket URL on macosx.Matthieu Nottale2018-02-261-1/+3
| | | | Signed-off-by: Matthieu Nottale <matthieu.nottale@docker.com>
* 3.2.0-devJoffrey F2018-02-221-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Bump 3.1.03.1.0-releaseJoffrey F2018-02-221-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1914 from mefyl/masterJoffrey F2018-02-221-120/+87
|\ | | | | Improve .dockerignore compliance
| * Add note about potential dockerignore optimization.mefyl2018-02-211-0/+9
| | | | | | | | Signed-off-by: mefyl <quentin.hocquet@docker.com>
| * Skip entirely excluded directories when handling dockerignore.mefyl2018-02-211-0/+4
| | | | | | | | | | | | | | This is pure optimization to not recurse into directories when there are no chances any file will be included. Signed-off-by: mefyl <quentin.hocquet@docker.com>
| * Fix .dockerignore: accept wildcard in inclusion pattern, honor last line ↵mefyl2018-02-211-114/+74
| | | | | | | | | | | | precedence. Signed-off-by: mefyl <quentin.hocquet@docker.com>
| * Fix dockerignore handling of absolute path exceptions.mefyl2018-02-211-3/+3
| | | | | | | | Signed-off-by: mefyl <quentin.hocquet@docker.com>
| * Revert "Correctly support absolute paths in .dockerignore"mefyl2018-02-191-13/+7
| | | | | | | | | | | | This reverts commit 34d50483e20e86cb7ab22700e036a5c4d319268a. Signed-off-by: mefyl <quentin.hocquet@docker.com>
* | Merge pull request #1918 from rycus86/service-restart-methodJoffrey F2018-02-211-0/+15
|\ \ | | | | | | Shorthand method for service.restart()
| * | Shorthand method for service.force_update()Viktor Adam2018-02-211-0/+15
| |/ | | | | | | Signed-off-by: Viktor Adam <rycus86@gmail.com>
* | GenericResources was introduced in 1.32Joffrey F2018-02-201-2/+2
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Code cleanup and version guardsJoffrey F2018-02-202-32/+38
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for generic resources to docker.types.ResourcesWilliam Myers2018-02-201-1/+33
| | | | | | | | | | | | | | - Add support for dict and list generic_resources parameter - Add generic_resources integration test Signed-off-by: William Myers <mwilliammyers@gmail.com>
* | Fix DockerClient pull bug when pulling image by digest1912-pull-sha-tagJoffrey F2018-02-201-1/+3
|/ | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1906 from docker/1352-data_stream_controlJoffrey F2018-02-146-15/+42
|\ | | | | Add chunk_size parameter to data downloading methods
| * Add chunk_size parameter to data downloading methods (export, get_archive, save)1352-data_stream_controlJoffrey F2018-02-146-15/+42
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Fix authconfig resolution when credStore is used combined with login()1861-credstore_loginJoffrey F2018-02-131-1/+4
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for device_cgroup_rules parameter in host configc5622_device_cgroup_rulesJoffrey F2018-02-133-1/+16
|/ | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Correctly support absolute paths in .dockerignorec5672-dockerignore-abspathJoffrey F2018-02-121-7/+13
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1901 from docker/1899-create_archive_fixJoffrey F2018-02-051-5/+3
|\ | | | | Rewrite access check in create_archive with EAFP
| * Rewrite access check in create_archive with EAFP1899-create_archive_fixJoffrey F2018-02-051-5/+3
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Merge pull request #1896 from docker/1895-login-authsJoffrey F2018-02-021-1/+1
|\ \ | | | | | | Add login data to the right subdict in auth_configs
| * | Add login data to the right subdict in auth_configs1895-login-authsJoffrey F2018-02-011-1/+1
| |/ | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add workaround for bpo-32713c5618-negative-mtime-tarJoffrey F2018-02-011-0/+4
|/ | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* 3.1.0-devJoffrey F2018-01-311-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Docs fixes3.0.0-releaseJoffrey F2018-01-311-0/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>