fix: wait for container start signal rather than 'container' signal

This commit is contained in:
Ben Allfree
2024-02-24 07:55:01 -08:00
parent 4b65f46046
commit 81b899ce42

View File

@@ -219,8 +219,8 @@ export const createPocketbaseService = async (
}
},
)
.on('container', (container: Container) => {
dbg(`Got container`, container)
.on('start', (container: Container) => {
dbg(`Got started container`, container)
started = true
resolveContainer(container)
})