You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WaitForPort("servicename", "80/tcp", 20000) works as expected on CompositeBuilder. However after adding .ServiceName("AlternativeName") the WaitForPort() does not work anymore:
Can't find host endpoint for container port: 80/tcp
I assume ServiceName is the project name in docker compose?
I assumed that changing the project name does not change the expected service name in WaitForPort().
Changing "servicename" to "AlternativeName_servicename" however works.
The text was updated successfully, but these errors were encountered:
The
WaitForPort("servicename", "80/tcp", 20000)
works as expected onCompositeBuilder
. However after adding.ServiceName("AlternativeName")
theWaitForPort()
does not work anymore:ServiceName
is the project name in docker compose?WaitForPort()
.Changing
"servicename"
to"AlternativeName_servicename"
however works.The text was updated successfully, but these errors were encountered: