From e5c6a19654aa21458ff58656698f840e72e36dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarl=20Andr=C3=A9=20H=C3=BCbenthal?= Date: Tue, 24 Sep 2024 13:18:23 +0200 Subject: [PATCH] update ryuk version, fixes #118 --- lib/testcontainers.ex | 2 +- lib/util/constants.ex | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/testcontainers.ex b/lib/testcontainers.ex index 5526e6d..372e8a3 100644 --- a/lib/testcontainers.ex +++ b/lib/testcontainers.ex @@ -39,7 +39,7 @@ defmodule Testcontainers do |> Base.encode16() ryuk_config = - Container.new("testcontainers/ryuk:0.6.0") + Container.new("testcontainers/ryuk:0.9.0") |> Container.with_exposed_port(8080) |> Container.with_environment("RYUK_PORT", "8080") |> Container.with_bind_mount("/var/run/docker.sock", "/var/run/docker.sock", "rw") diff --git a/lib/util/constants.ex b/lib/util/constants.ex index ec5876f..416bf88 100644 --- a/lib/util/constants.ex +++ b/lib/util/constants.ex @@ -2,7 +2,7 @@ defmodule Testcontainers.Constants do @moduledoc false def library_name, do: :testcontainers - def library_version, do: "1.10.0" + def library_version, do: "1.10.1" def container_label, do: "org.testcontainers" def container_lang_label, do: "org.testcontainers.lang" def container_reuse_hash_label, do: "org.testcontainers.reuse-hash" diff --git a/mix.exs b/mix.exs index e42f7e0..a8f4aa1 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule TestcontainersElixir.MixProject do use Mix.Project @app :testcontainers - @version "1.10.0" + @version "1.10.1" @source_url "https://github.com/testcontainers/testcontainers-elixir" def project do