I’m trying to get the ContentBox Docker image mounted on my iMac with an M1 chip.
The following error came up when executing the run command: docker run -p 8080:8080 -e express=true -e install=true ortussolutions/contentbox
WARNING: The requested image’s platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
The work around is to specify the platform: docker run --platform linux/arm64/v8 -p 8080:8080 -e express=true -e install=true ortussolutions/contentbox
The next hurdle is that it stalls at:
INFO: Generating server startup script
Doesn’t anyone know how to get past that?