We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c82f3 commit ca088ddCopy full SHA for ca088dd
.changeset/curvy-eagles-raise.md
@@ -0,0 +1,5 @@
1
+---
2
+"prool": patch
3
4
+
5
+Added pull policy to `Instance.tempo`.
src/testcontainers/Instance.ts
@@ -1,5 +1,6 @@
import {
GenericContainer,
+ PullPolicy,
type StartedTestContainer,
Wait,
6
} from 'testcontainers'
@@ -50,6 +51,7 @@ export const tempo = Instance.define((parameters?: tempo.Parameters) => {
50
51
const promise = Promise.withResolvers<void>()
52
53
const c = new GenericContainer(image)
54
+ .withPullPolicy(PullPolicy.alwaysPull())
55
.withPlatform('linux/x86_64')
56
.withNetworkMode('host')
57
.withExtraHosts([
0 commit comments