New to fleetdm... anyone seen this before? Could i...
# fleet
j
New to fleetdm... anyone seen this before? Could it be because I'm running this Windows 11 PC in UTM on a silicon mac? The VM and Docker installs are both ARM based... I think I am living in processor compatibility hell.... I also have no experience with Docker so have that working against me also
Copy code
Generating your fleetd agent...
docker: error during connect: Head "<http://%2F%2F.%2Fpipe%2FdockerDesktopLinuxEngine/_ping>": open //./pipe/dockerDesktopLinuxEngine: The system cannot find the file specified.
See 'docker run --help'.
Error: package root files: heat failed: exit status 127
d
Hey @Jackson Pavelka, so you're trying to create a Fleet agent installer for Windows here?
j
Correct
d
I've got a similar setup as you, let me do some testing to see if I get the same error. As a side note, you should be able to create a Windows .msi installer on Mac, but you still need Docker. So if you want to simplify things and take the Windows VM out of the equation that is a possible option
On my Windows (ARM) VM, I got the same error. I wasn't able to get the Docker engine running until I installed Hyper-V using this command in an Admin powershell session:
Enable-WindowsOptionalFeature -Online -FeatureName $("Microsoft-Hyper-V", "Containers") -All
After this, I got the Docker engine running but got a different error:
Copy code
Generating your fleetd agent...
Unable to find image 'fleetdm/wix:latest' locally
latest: Pulling from fleetdm/wix
docker: image operating system "linux" cannot be used on this platform: operating system is not supported.
See 'docker run --help'.
Error: package root files: heat failed: exit status 125
So long story short, I think you should try creating the installer on your Mac instead of the Window VM and see if that works any better 🙂
You'll need to install Docker on your Mac and wine64. Reach out here if you need help with any of that