diff --git a/src/Console/Concerns/InteractsWithDockerComposeServices.php b/src/Console/Concerns/InteractsWithDockerComposeServices.php index 93b96c25..1b8e7997 100644 --- a/src/Console/Concerns/InteractsWithDockerComposeServices.php +++ b/src/Console/Concerns/InteractsWithDockerComposeServices.php @@ -104,11 +104,6 @@ protected function buildDockerCompose(array $services) unset($compose['volumes']); } - // Replace Selenium with ARM base container on Apple Silicon... - if (in_array('selenium', $services) && in_array(php_uname('m'), ['arm64', 'aarch64'])) { - $compose['services']['selenium']['image'] = 'selenium/standalone-chromium'; - } - $yaml = Yaml::dump($compose, Yaml::DUMP_OBJECT_AS_MAP); $yaml = str_replace('{{PHP_VERSION}}', $this->option('php'), $yaml); diff --git a/stubs/selenium.stub b/stubs/selenium.stub index 89ba7400..c1483552 100644 --- a/stubs/selenium.stub +++ b/stubs/selenium.stub @@ -1,5 +1,5 @@ selenium: - image: 'selenium/standalone-chrome' + image: 'selenium/standalone-chromium' extra_hosts: - 'host.docker.internal:host-gateway' volumes: