runc
# Verify the runc is installed
runc --help
# Generate a container configuration file
runc spec{
"type": "bind",
"source": "/",
"destination": "/",
"options": [
"rbind",
"rw",
"rprivate"
]
}# Create the rootfs folder in the same directory
mkdir rootfs
# Start the container
runc run demoLast updated