Skip to content

Commit

Permalink
update ryuk version, fixes #118
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlah committed Sep 24, 2024
1 parent 9e65ccc commit e5c6a19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/testcontainers.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion lib/util/constants.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e5c6a19

Please sign in to comment.