test with container host

This commit is contained in:
Peter Clement 2024-03-25 16:35:49 +00:00
parent 5b3cb06365
commit 39cd39ebf5
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export async function start(): Promise<{ host: string; port: number }> {
const host = container.getHost()
const port = container.getMappedPort(9000)
env._set("MINIO_URL", `http://0.0.0.0:${port}`)
env._set("MINIO_URL", `http:/${host}:${port}`)
return { host, port }
}