Launching Quickstart hits error: no matching manifest for linux/arm64/v8 in the manifest list entries #188
-
|
I recently got a new M1 Pro Macbook Pro, and it runs differently from the old Intel one I used to use. Setting it up the same way, when I try to run the quickstart I run into this error: no matching manifest for linux/arm64/v8 in the manifest list entries. INFO: Checking git... INFO: Checking Docker... Server: Docker Desktop 4.6.0 (75818) INFO: Checking /Users/albertjeng/Desktop/OSMT/osmt/osmt-quickstart.env for invalid default values (xxxxxx) INFO: Starting OSMT Quickstart with docker-compose using osmt-quickstart.env Any idea as to why this would be? Docker is running in the background with more than enough RAM and Rosetta is already installed. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
|
Thank you for sharing the log output. Let's try to remove OSMT from the equation and run MySQL as a Docker container on your M1 Macbook. Run
Then run |
Beta Was this translation helpful? Give feedback.
Thank you for sharing the log output. Let's try to remove OSMT from the equation and run MySQL as a Docker container on your M1 Macbook.
Run
docker psand ensure you don't have any MySQL containers running, and then run this:docker run --name=mysql1 -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d library/mysql:8.0Then run
docker psagain. What do you see?