We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
As described here the issue is resolved adding a new parameter platform: linux/x86_64.
platform: linux/x86_64
The changes are adding "platform" variable to the Image class and propagate the value to Docker class to use it in:
private fun startContainer() { val dbPort = ExposedPort.tcp(portBinding.first) docker.createContainerCmd(imageName) .withPlatform(platform) .withName(containerName) .withEnv(env.map { "${it.key}=${it.value}" }) .withExposedPorts(dbPort) .withHostConfig(newHostConfig().withPortBindings(Ports(dbPort, bindPort(portBinding.second)))) .exec() docker.startContainerCmd(containerName).exec() }
Thanks
The text was updated successfully, but these errors were encountered:
PLABE-867 restore test (pull request #32)
d2132ee
Approved-by: Donato Lucia
No branches or pull requests
Hi,
As described here the issue is resolved adding a new parameter
platform: linux/x86_64
.The changes are adding "platform" variable to the Image class and propagate the value to Docker class to use it in:
Thanks
The text was updated successfully, but these errors were encountered: