Markus

Results 10 comments of Markus

> You'll need to execute this command first: > > `vagrant plugin install vagrant-disksize` > > and then add a line like this to your vagrantfile: `config.disksize.size = '60GB'` >...

Depending on what your `docker-compose.yml` contains, it might be necessary to copy stuff. As an example if you mount config files for a container. So a mechanism like `.dockerignore` could...

@Michael-Rosa-Imprivata just out of interest So `withLocalCompose(true)` still runs into `java.lang.OutOfMemoryError: Java heap space`. That sounds odd (or different issue), since the [LocalDockerCompose](https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/LocalDockerCompose.java#L27) doesn't copy, compared to [ContainerisedDockerCompose](https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/ContainerisedDockerCompose.java#L23) in [GenericContainer](https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/GenericContainer.java#L441)....

@eugene-kuntsevich https://java.testcontainers.org/modules/docker_compose/#local-compose-mode In short, it executes `docker-compose` (or v2 `docker compose`) on your machine (or the CI machine) instead of doing it, in a container - and therefore has no...

Thanks ... i can confirm the `authentication: bearer` helps. So a workaround.

OpenID Connect provider: Azure AD/ EntraID. same situation ... any ideas/solutions? I'd prefer `--oidc-use-pkce`, cause i do not need to create/update tokens and share them with a huge bunch of...

> OpenID Connect provider: Azure AD/ EntraID. > > same situation ... any ideas/solutions? > > I'd prefer `--oidc-use-pkce`, cause i do not need to create/update tokens and share them...

We switched using https://azure.github.io/kubelogin/topics/k8s-oidc-aad.html

additional info, with `govc` correct list can be retrieved ``` govc vm.ip -a /.../fw01 ... 10.20.68.2,10.20.68.1,10.20.66.2,10.20.66.1,10.20.65.2,10.20.65.1,10.20.64.2,10.20.64.1, ... ```