A tiny minimal container runtime written in Rust. The idea is to support a minimal isolated containers without using existing runtimes, vas-quod uses linux syscall to achieve isolated containers { namespaces, cgroups, chroot, unshare }.
Usage: ./vas-quod - minimal container runtime [options]
Options:
-r, --rootfs path Path to root file-system eg. --rootfs /home/alpinefs
-c, --command command
Command to be executed eg. --command `curl
https://google.com`
-h, --help print this help menu
Path to root filesystem
Download a sample root filesystem from https://github.com/flouthoc/vas-quod/releases/download/rootfs/rootfs.tar.gz
Container entrypoint command
- Add Support for network bridges.
- Implement
-m
or--mount
to mount read-only files from host machine.