Skip to content
New issue

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

Docker installation error on Mac with Apple M Chip (ARM) #100

Open
dev00lex opened this issue Jan 13, 2025 · 2 comments · May be fixed by #103
Open

Docker installation error on Mac with Apple M Chip (ARM) #100

dev00lex opened this issue Jan 13, 2025 · 2 comments · May be fixed by #103

Comments

@dev00lex
Copy link

On
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

@dora-gt
Copy link

dora-gt commented Jan 14, 2025

try apt-get install -y chromium

@Grynn
Copy link

Grynn commented Jan 15, 2025

There is no Chrome for linux/arm64. See #98 (comment)

Partial solution: In docker-compose.yml add
platform: linux/amd64 to the service definition

services:
  browser-use-webui:
    platform: linux/amd64
    build:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants