I've got an issue with running Cypress tests off a container.
In my docker-compose
I've following services: users, client, users-db, nginx and they're all running.
my baseUrl
is set to "http://nginx"
because I read somewhere that I need to reference
the service the server is running on which in my case is nginx.
I've tried also "http://localhost"
and "http://client"
but when I run docker run -it -v $PWD:/e2e -w /e2e cypress/included:4.11.0
I keep getting Cypress could not verify that this server is running
Any feedback that will lead to resolution is much appreciated.