Docker image for Windows ARM64 #937
Unanswered
SophisticatedConsulting
asked this question in
1. Q&A
Replies: 1 comment
-
I build the image on Apple, but as far as I know the image has nothing specific to Apple. Unfortunately, I don't have a platform to test with Windows. Here's how I load KM from Aspire: const string KMDockerImage = "kernelmemory/service";
const string KMDockerTag = "latest";
bool isArm = RuntimeInformation.ProcessArchitecture is Architecture.Arm or Architecture.Arm64;
builder.AddContainer("kernel-memory", KMDockerImage, tag: isArm ? $"{KMDockerTag}-arm64" : KMDockerTag) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am having difficulty on an ARM64 windows dev machine to run Kernel Memory in Docker.
It runs fine from the command prompt but I want to implement this via Aspire.
Whilst the ARM64 image loads into Docker, I cannot connect to it. Is the image specifically for Apple Silicon?
Beta Was this translation helpful? Give feedback.
All reactions