try different hostname?

This commit is contained in:
Peter Clement 2024-03-26 08:42:17 +00:00
parent c068ed9200
commit cfefdb8ded
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ export async function start(): Promise<void> {
.start()
const port = container.getMappedPort(9000)
env._set("MINIO_URL", `http://0.0.0.0:${port}`)
env._set("MINIO_URL", `http://127.0.0.1:${port}`)
}
export async function stop() {