Hi team, SIE looks great, I wanted to try it locally.
The docker command given on the landing page doesn't work on my MacBook Air ARM (M2), latest macOs, latest Docker 4.74
docker run -p 8080:8080 ghcr.io/superlinked/sie-server:latest-cpu-default
Unable to find image 'ghcr.io/superlinked/sie-server:latest-cpu-default' locally
docker: Error response from daemon: no matching manifest for linux/arm64/v8 in the manifest list entries: no match for platform in manifest: not found
Docker agent troubleshooting:
The image only supports linux/amd64. If you're on ARM64 (Mac M1/M2/M3 or ARM Linux), you'll need to either:
Use --platform flag to emulate amd64 (slower):
docker run --platform linux/amd64 -p 8080:8080 ghcr.io/superlinked/sie-server:latest-cpu-default
Check for an ARM64-native version — contact Superlinked to see if they offer an ARM64 build.
I guess many devs are on macOs like me. Maybe create an arm build? Or suggest --platform with architecture detection?
Hi team, SIE looks great, I wanted to try it locally.
The docker command given on the landing page doesn't work on my MacBook Air ARM (M2), latest macOs, latest Docker 4.74
Docker agent troubleshooting:
I guess many devs are on macOs like me. Maybe create an arm build? Or suggest
--platformwith architecture detection?