| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Devices should be separated by colon separated string
|
| |
| |
| |
| |
| |
| | |
Totally bad test :( (written by me). The documentation and
code should match now. Many thanks to pranavs18 for spotting
the error and proposing the fix.
|
|\ \
| |/
|/| |
Fixed bug in utils.mkbuildcontext for BytesIO Dockerfiles
|
| | |
|
| |
| |
| |
| |
| |
| | |
- resetting dockerfile seek position to 0 after dockerfile.getvalue() is called
- prevents traceback on line utils.py line 43
- 'IOError("end of file reached")' in tarfile.py
|
| |
| |
| | |
Python's `os.walk` does not order the lists of files and directories it returns, so in order to produce a consistent build context tarfile, they should be ordered.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts:
docker/utils/__init__.py
docker/utils/utils.py
tests/utils_test.py
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
[`filters` is a json encoded value of the filters (a map[string][string]) to process on the images list. ][1]
The tricky thing is that we must convert boolean value to string and any filter value to list to make a `map[string][string]` json format
[1]: https://docs.docker.com/reference/api/docker_remote_api_v1.14/#list-images
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
dims-support-devices
Conflicts:
README.md
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The command line and daemon started supporting --device
parameter during docker start a while ago in the following commit:
docker/docker@e855c4b
Since the command line looks like this,
--device=[] Add a host device to the container (e.g. --device=/dev/sdc:/dev/xvdc)
This patch allows a list of strings to be passed into the start() method
and we parse out the 3 components just like in the above mentioned commit
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
This change adds both files and directories to the tra-file for the
Docker context. Previously only files where added.
The context will now also contain empty directoryes and symlinks
to directories.
|
| |
| |
| | |
For those not using https who might have it firewalled, this request without a timeout causes significant delay. Adding a moderately generous timeout shouldn't affect anyone negatively, but will make things a bit nicer otherwise.
|
|\ \
| |/
|/| |
Add support for .dockerignore
|
| |
| |
| |
| |
| |
| |
| |
| | |
Fixes #265.
Implementation is a bit more elaborate than docker's implementation and
matches with the one proposed in dotcloud/docker#6869 to handle permission
issues more nicely.
|
| | |
|
|/
|
|
| |
Client's base_url. Unit tests
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Move this statement in `else` clause to make sure the try except block doesn't catch
coding errors.
|
| |
|
|
imports.
|