This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //go:build linux | |
| // This is a Go program that demonstrates the fundamental syscalls and kernel features that power containers. | |
| // It's stripped of all abstractions to show you exactly what's happening at the system level. | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" |