logoalt Hacker News

Schlagbohrertoday at 7:30 AM1 replyview on HN

Can someone more versed in Docker explain to me how this is different than building my own docker container from a Dockerfile for using Pi agent harness? That's what I do currently. I use Docker Desktop in windows as the backend for that.


Replies

Hugsuntoday at 7:39 AM

Docker containers use Linux kernel features to create an isolated environment, running on the same machine as docker is. This creates a virtual machine, with its own kernel, and runs the container in there. This gives stronger isolation and security guarantees.

show 2 replies