I have two containers: Container A, which sends a POST request to Container B, which exposes an endp

I have two containers: Container A, which sends a POST request to Container B, which exposes an endpoint. I don't want to expose that endpoint publicly, so I want the request to be sent internally. How can I do this?

I'm able to do this with a worker using service bindings, but I haven't been able to get it working in a container to container setup. For context my Container A code is written in Go.
Was this page helpful?