diff --git a/internal/cmd/integration-tests/utils.go b/internal/cmd/integration-tests/utils.go index 925aa1b806..2f3696fe5e 100644 --- a/internal/cmd/integration-tests/utils.go +++ b/internal/cmd/integration-tests/utils.go @@ -35,7 +35,7 @@ func buildAlloy(alloyBinary string) { } func setupEnvironment(dockerComposeFile string) { - executeCommand("docker", []string{"compose", "--platform", "linux/amd64", "-f", dockerComposeFile, "up", "-d"}, "Setting up environment with Docker Compose") + executeCommand("docker", []string{"compose", "-f", dockerComposeFile, "up", "-d"}, "Setting up environment with Docker Compose") fmt.Println("Sleep for 45 seconds to ensure that the env has time to initialize...") time.Sleep(45 * time.Second) }