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