We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On docker compose up --build
docker compose up --build
I get this error on Apple Silicon Mac (ARM):
failed to solve: process "/bin/sh -c wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list && apt-get update && apt-get install -y google-chrome-stable && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 100
The text was updated successfully, but these errors were encountered:
try apt-get install -y chromium
apt-get install -y chromium
Sorry, something went wrong.
There is no Chrome for linux/arm64. See #98 (comment)
Partial solution: In docker-compose.yml add platform: linux/amd64 to the service definition
platform: linux/amd64
services: browser-use-webui: platform: linux/amd64 build:
Successfully merging a pull request may close this issue.
On
docker compose up --build
I get this error on Apple Silicon Mac (ARM):
The text was updated successfully, but these errors were encountered: