Igor Parfenov
Contact: @Igor_Parfenov
This is tool for containarization on Linux OS. It supports pulling images for Hub Docker
Tool was built on Ubuntu 22.
Execute cont to get usage information.
Manually get name of your network interface and write it into link file.
Usage: cont [command]
Commands:
listList all local containerssetup <name> <size>Create disk file for mounting with given name and size in Mbremove <name>Remove disk file with given namepull <name> <image>Pull given docker image into given disk file namerun <name> <command>Run given command in local container with given name
Example for setting alpine OS:
sudo ./cont setup alpine 100
sudo ./cont pull alpine alpine
sudo ./cont run alpine /bin/ash
To setup DNS, you can enter echo "nameserver 8.8.8.8" > /etc/resolv.conf
Enter make to build the tool.