8000 Tags · cldmnky/dockertest · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: cldmnky/dockertest

Tags

v3.8.1

Toggle v3.8.1's commit message

Verified

This commit was created on GitHub.com an 8000 d signed with GitHub’s verified signature. The key has expired.
Fix freebsd (ory#324)

See ory/kratos#1645

v3.8.0

Toggle v3.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: update repository templates (ory#307)

v3.7.0

Toggle v3.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: parse volume mounts using the same function as docker cli (ory#274)

volume mount paths should be of the form:
    `<src>:<dest>[:<options>]`

Docs:
https://docs.docker.com/storage/bind-mounts/#choose-the--v-or---mount-flag
https://docs.docker.com/storage/volumes/#choose-the--v-or---mount-flag

`src` can either be the name of a docker volume OR an absolute path on the host

MountParser assumes that it's parsing a local absolute
path for the `src` arg. However, as mentioned above, 
it's also legal to use a named docker volume. In addition, 
there can be the optional `options` section, with an
additional colon.

Rather than trying to capture all the edge cases coding
it ourselves, we just import the same function that
docker-cli uses to parse the volume.

v3.6.5

Toggle v3.6.5's commit message

Verified

This commit was signed with the committer’s verified signature.
aeneasr hackerman
chore: bump term to fix windows

Closes ory#232

v3.6.4

Toggle v3.6.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: exponential backoff (ory#264)

Co-authored-by: Andreas Amstutz <tullo@users.noreply.github.com>

v3.6.3

Toggle v3.6.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: update repository templates (ory#250)

v3.6.2

Toggle v3.6.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: add error handling after container purging (ory#231)

v3.6.1

Toggle v3.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: use moby/term rather than our own term package (ory#227)

Closes ory#212
Closes ory#208

v3.6.0

Toggle v3.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add basic network management (ory#188)

Related ory#163 

This PR adds three things (in order from smaller to bigger):
* Getting a container descriptor inside container. This is useful when tests already running inside container with mounted docker socket for container management.
* Execution commands inside running container. This is useful "in general".  I.e. we have project with test case that simulates RabbitMQ restarts using `rabbitmqctl stop_app` and `rabbitmqctl start_app`. Also it's used in new tests.
* Basic network management. Docker networks can be created and deleted using `Pool`, containers can be connected to network using `BuildAndRunWithOptions` and `RunWithOptions`, already running containers can be connected to network using `ConnectToNetwork`.

Currrently it's working pretty good but requires too much boilerplate with `docker` package for network management and commands execution.

Also it helps in cases metioned in ory#163 when you need to run some end-to-end or integration tests with multiple linked containers.

v3.5.5

Toggle v3.5.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(mod): rename and update gotestyourself to gotest.tools (ory#199)

Updates "gotest.tools" to the latest v3 release, which includes a name
change from its previous import path of
"github.com/gotestyourself/gotestyourself".
0