| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Joffrey F <f.joffrey@gmail.com>
|
|
|
|
| |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\
| |
| | |
Add support for rotate_manager_unlock_key
|
| |
| |
| |
| | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \
| |/
|/| |
Update some test dependencies / default values with newer versions
|
| |
| |
| |
| | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \
| | |
| | | |
Return node id on swarm init
|
| | |
| | |
| | |
| | | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \ \
| | | |
| | | | |
Add support for swarm DataPathAddr
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
| |/ /
| | |
| | |
| | | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \ \
| |_|/
|/| | |
Make dockerpycreds part of the SDK under docker.credentials
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \ \
| |_|/
|/| | |
Streaming TTY messages sometimes get truncated
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|/ /
| |
| |
| | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \
| | |
| | | |
Fix socket detach helper
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|/ /
| |
| |
| | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \
| | |
| | | |
Avoid demux test flakiness
|
| | |
| | |
| | |
| | | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|/ /
| |
| |
| | |
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \
| |/
|/| |
Remove init_path from create
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This option was never functional, and was not intended
to be added to the "container create" API, so let's
remove it, because it has been removed in Docker 17.05,
and was broken in versions before that; see
- https://github.com/moby/moby/issues/32355 --init-path does not seem to work
- https://github.com/moby/moby/pull/32470 remove --init-path from client
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
|
|\ \
| | |
| | | |
Fix versions.py to include release stage
|
|/ /
| |
| |
| | |
Signed-off-by: Joffrey F <f.joffrey@gmail.com>
|
|\ \
| | |
| | | |
Replace triple backtick in exec_run documentation which caused a rend…
|
|/ /
| |
| |
| |
| |
| | |
error.
Signed-off-by: Adam Dangoor <adamdangoor@gmail.com>
|
|\ \
| |/
|/| |
Add support for setting init on services
|
| |
| |
| |
| | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \
| | |
| | | |
Document correct listen_addr default on join swarm
|
| |/
| |
| |
| | |
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \
| | |
| | | |
Avoid race condition on test
|
|/ /
| |
| |
| | |
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
|
|\ \
| |/
|/| |
add ports to containers
|
| |
| |
| |
| | |
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
|
| |
| |
| |
| | |
Signed-off-by: Karl Kuehn <kuehn.karl@gmail.com>
|
|\ \
| | |
| | | |
scripts/version.py: Use regex grouping to extract the version
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The `lstrip` and `rstrip` functions take a set of characters to remove, not a
prefix/suffix. Thus `rstrip('-x86_64')` will remove any trailing characters in
the string `'-x86_64'` in any order (in effect it strips the suffix matching
the regex `[-_x468]*`). So with `18.09.4` it removes the `4` suffix resulting
in trying to `int('')` later on:
Traceback (most recent call last):
File "/src/scripts/versions.py", line 80, in <module>
main()
File "/src/scripts/versions.py", line 73, in main
versions, reverse=True, key=operator.attrgetter('order')
File "/src/scripts/versions.py", line 52, in order
return (int(self.major), int(self.minor), int(self.patch)) + stage
ValueError: invalid literal for int() with base 10: ''
Since we no longer need to check for the arch suffix (since it no longer
appears in the URLs we are traversing) we could just drop the `rstrip` and
invent a local prefix stripping helper to replace `lstrip('docker-')`. Instead
lets take advantage of the behaviour of `re.findall` which is that if the regex
contains a single `()` match that will be returned. This lets us match exactly
the sub-section of the regex we require.
While editing the regex, also ensure that the suffix is precisely `.tgz` and
not merely `tgz` by adding an explicit `\.`, previously the literal `.` would
be swallowed by the `.*` instead.
Signed-off-by: Ian Campbell <ijc@docker.com>
|
|\ \
| |/
|/| |
Fix base_url to keep TCP protocol
|
| |
| |
| |
| |
| |
| |
| |
| | |
This fix lets the responsability of changing the
protocol to `parse_host` afterwards, letting
`base_url` with the original value.
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
|
|/
|
|
|
|
| |
This test is quite flaky on ssl integration test
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
|
|\
| |
| | |
Add registry auth header to inspect_distribution requests
|
| |
| |
| |
| |
| |
| |
| | |
Update docstring for auth_config parameter in pull, push, and
inspect_distribution
Signed-off-by: Joffrey F <joffrey@docker.com>
|
|\ \
| | |
| | | |
Move volume_driver to RUN_HOST_CONFIG_KWARGS
|
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes #2271
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
|
|\ \ \
| | | |
| | | | |
Redux added arguments to create a swarm with a custom address pool and subnet size.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Following https://github.com/docker/docker-py/pull/2201#pullrequestreview-192571911
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
Co-authored-by: Hannes Ljungberg <hannes@5monkeys.se>
Co-authored-by: bluikko <14869000+bluikko@users.noreply.github.com>
|