Merge pull request #498 from basecamp/app-exec-env-file

App exec with env file
This commit is contained in:
Donal McBreen
2023-10-30 08:22:35 +00:00
committed by GitHub
2 changed files with 7 additions and 3 deletions

View File

@@ -159,7 +159,7 @@ class CliAppTest < CliTestCase
test "exec" do
run_command("exec", "ruby -v").tap do |output|
assert_match "docker run --rm dhh/app:latest ruby -v", output
assert_match "docker run --rm --env-file .kamal/env/roles/app-web.env dhh/app:latest ruby -v", output
end
end