docker selenium/standalone-chrome unable to connect to docker web server
问题 I am trying to use codeception to run tests for a php web site which was developed using docker containers. I created a test folder in the web container and put there codecept.phar. This is the project's setup: docker-compose.yml: version: '3' services: db: image: mariadb restart: always volumes: - ./db:/var/lib/mysql ports: - '3306:3306' environment: MYSQL_ROOT_PASSWORD: root web: build: . restart: always tty: true volumes: - ./src:/var/www - ./build/php.ini:/usr/local/etc/php/php.ini ports: