Skip to content

Commit

Permalink
Fix flag ordering with docker-compose up
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-hanna committed Jan 8, 2025
1 parent 31a700c commit 8bbd4fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func runFipsServer(v *fipsServerSuite, tc cipherTestCase, composeFiles string) {
envvar = fmt.Sprintf(`%s TLS_MAX="--tls-max %s"`, envvar, tc.tlsMax)
}

_, err := v.Env().RemoteHost.Execute(fmt.Sprintf("%s docker-compose -f %s --detach --wait --timeout 300 up", envvar, strings.TrimSpace(composeFiles)))
_, err := v.Env().RemoteHost.Execute(fmt.Sprintf("%s docker-compose -f %s up --detach --wait --timeout 300", envvar, strings.TrimSpace(composeFiles)))
if err != nil {
v.T().Logf("Error starting fips-server: %v", err)
require.NoError(t, err)
Expand Down

0 comments on commit 8bbd4fb

Please sign in to comment.