Hello, I am trying to run the docker image of cypr...
# help
f
Hello, I am trying to run the docker image of cypress/included:10.8 but I seem to run into a few issues.
Copy code
js
  cypress:
  container_name: cypress
  image: cypress/included:10.8.0
    tty: true
    volumes:
      - "./:/name"
    working_dir: /name
Copy code
js
cypress.config.js
-   e2e: {
    baseUrl: 'http://localhost:3000',
  },
  video: false,
  port: 3000,
I can find my tests but it never connects to localhost:3000 (i have another container running on 3000 as to where the tests should be run hence the port 3000 in config file). Also, running
docker compose up cypress
has a default entrypoint of
cypress run
how would I go about to change that to
cypress open
?