3

I had to update my web browser inside docker file, because I get on my tests report that banner, and it's failed my automation tests.enter image description here

I don't know how to update that. Should I do it through docker update container? Or should I delete selenium/node-chrome add push into docker new container?

pawelkuznik
  • 107
  • 10

1 Answers1

1

Ok I found a solution:

  1. Go into folder with docker-compose.yml file (if you don't have - you should grab from enter link description here
  2. Synchronize with service image registry docker-compose pull
  3. Recreate container if docker-compose file or image have changed:docker-compose up -d

after those steps browser should be updated

pawelkuznik
  • 107
  • 10