- 27 Nis, 2019 2 kayıt (commit)
-
-
Joffrey F yazdı
Replace triple backtick in exec_run documentation which caused a rend…
-
Adam Dangoor yazdı
Signed-off-by: Adam Dangoor <adamdangoor@gmail.com>
-
- 14 Nis, 2019 1 kayıt (commit)
-
-
Joffrey F yazdı
Add support for setting init on services
-
- 04 Nis, 2019 3 kayıt (commit)
-
-
Chris Crone yazdı
Document correct listen_addr default on join swarm
-
Ulysses Souza yazdı
Avoid race condition on test
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 03 Nis, 2019 1 kayıt (commit)
-
-
Ulysses Souza yazdı
add ports to containers
-
- 31 Mar, 2019 1 kayıt (commit)
-
-
Hannes Ljungberg yazdı
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-
- 28 Mar, 2019 3 kayıt (commit)
-
-
Hannes Ljungberg yazdı
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-
Ulysses Souza yazdı
scripts/version.py: Use regex grouping to extract the version
-
Ian Campbell yazdı
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>
-
- 27 Mar, 2019 1 kayıt (commit)
-
-
Ulysses Souza yazdı
Fix base_url to keep TCP protocol
-
- 26 Mar, 2019 5 kayıt (commit)
-
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Karl Kuehn yazdı
Signed-off-by: Karl Kuehn <kuehn.karl@gmail.com>
-
Ulysses Souza yazdı
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>
-
Ulysses Souza yazdı
This test is quite flaky on ssl integration test Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ian Campbell yazdı
Add registry auth header to inspect_distribution requests
-
- 25 Mar, 2019 5 kayıt (commit)
-
-
Ian Campbell yazdı
Move volume_driver to RUN_HOST_CONFIG_KWARGS
-
Ian Campbell yazdı
Redux added arguments to create a swarm with a custom address pool and subnet size.
-
Ian Campbell yazdı
Avoid race condition on short execution
-
Ulysses Souza yazdı
- Add a sleep of 2 seconds to be sure the logs can be requested before the daemon removes the container when run with auto_remove=True Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
Support for SCTP
-
- 23 Mar, 2019 2 kayıt (commit)
-
-
Joffrey F yazdı
set buildargs default value if None
-
Hannes Ljungberg yazdı
Fixes #2271 Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-
- 22 Mar, 2019 4 kayıt (commit)
-
-
Hannes Ljungberg yazdı
Following https://github.com/docker/docker-py/pull/2201#pullrequestreview-192571911Signed-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>
-
Barry Shapira yazdı
The integration tests require restarting the swarm once for each test. I had done so manually with self.init_swarm(force_new_cluster=True) but that wasn't resetting the swarm state correctly. The usual test teardown procedure cleans up correctly. Signed-off-by: Barry Shapira <barry@whiterabbit.ai>
-
Barry Shapira yazdı
Also corrected a documentation error: the default API version from constants is currently 1.35, not 1.30 as was sometimes listed. Signed-off-by: Barry Shapira <barry@whiterabbit.ai> Removed accidental whitespace. Signed-off-by: Barry Shapira <barry@whiterabbit.ai>
-
Barry Shapira yazdı
Signed-off-by: Barry Shapira <barry@whiterabbit.ai>
-
- 20 Mar, 2019 7 kayıt (commit)
-
-
Chris Crone yazdı
Update changelog and next milestone
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Djordje Lukic yazdı
3.7.1 release
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
- Adds a BaseHTTPAdapter with a close method to ensure that the pools is clean on close() - Makes SSHHTTPAdapter reopen a closed connection when needed like the others Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
This is because default the number of connections in OpenSSH is 10 Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 19 Mar, 2019 2 kayıt (commit)
-
-
Yincen Xia yazdı
Signed-off-by: Yincen Xia <philip980507@msn.cn>
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 18 Mar, 2019 3 kayıt (commit)
-
-
Hannes Ljungberg yazdı
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-
Hannes Ljungberg yazdı
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-
Hannes Ljungberg yazdı
Signed-off-by: Hannes Ljungberg <hannes@5monkeys.se>
-