webgrind icon indicating copy to clipboard operation
webgrind copied to clipboard

docker image for arm64 (Apple M-series processors)

Open langemeijer opened this issue 1 year ago • 3 comments

Sadly, my Apple M1/2 collegues cannot run the docker image. Can you provide an arm64 image?

langemeijer avatar Jan 03 '24 15:01 langemeijer

https://docs.docker.com/build/ci/github-actions/multi-platform/

kwerle avatar Jan 31 '24 16:01 kwerle

Sadly, my Apple M1/2 collegues cannot run the docker image.

I have the same problem.

To fix the it, run the docker command with the following argument: --platform=linux/amd64:

docker run --platform=linux/amd64 --rm -v /path/to/xdebug/files:/tmp -p 80:80 jokkedk/webgrind:latest

barmax avatar Feb 17 '24 20:02 barmax

For compose files:

platform: linux/amd64

Feng-Shui avatar Mar 21 '24 23:03 Feng-Shui