Error while installing / running Apache Superset using Docker on M1 Mac

919 Views Asked by At

I followed the steps to install Apache Superset using Docker as mentioned on Superset's Installation guide here I then did a cd superset and then docker compose up. This is what I get:

WARN[0000] The "CYPRESS_CONFIG" variable is not set. Defaulting to a blank string. 
WARN[0000] The "CYPRESS_CONFIG" variable is not set. Defaulting to a blank string. 
[+] Running 3/6
 
⠴ superset-tests-worker Pulling 3.6s                                        
 ! superset-websocket Warning    1.2s                                                     
 ⠴ superset-worker-beat Pulling  3.6s                                                  
 ⠴ superset-init Pulling         3.6s                                                      
 ✘ superset-worker Error         3.6s                                                     
 ✘ superset Error                3.6s                                                                 
no matching manifest for linux/arm64/v8 in the manifest list entries

Can someone please help me understand where I'm going wrong?

1

There are 1 best solutions below

0
On

@NicoHasse, Thank you for help, and for this link - github.com/apache/superset/issues/25434.

I performed the following and it worked

docker-compose down && docker image prune -a 
export DOCKER_DEFAULT_PLATFORM=linux/amd64 
docker-compose -f docker-compose-non-dev.yml up 

Really appreciate your help!