1
0
Fork 0
C/C++ container implementation
Datei suchen
Antoine f9b1f928d8 add reference link to read 2020-07-19 23:59:28 +02:00
bin Initial commit, setup project 2020-06-18 23:58:51 +02:00
busybox build container namespace require root 2020-07-04 00:08:30 +02:00
doc add reference link to read 2020-07-19 23:59:28 +02:00
obj Initial commit, setup project 2020-06-18 23:58:51 +02:00
src made container running as non root 2020-07-19 23:40:46 +02:00
.editorconfig Initial commit, setup project 2020-06-18 23:58:51 +02:00
.gitignore add reference link to read 2020-07-19 23:59:28 +02:00
Makefile Add makefile target to untar rootfs 2020-07-19 23:40:54 +02:00
alpine-minirootfs-3.12.0-x86.tar.gz build container namespace require root 2020-07-04 00:08:30 +02:00
doxygen.conf Initial commit, setup project 2020-06-18 23:58:51 +02:00
pandoc-config.yaml Initial commit, setup project 2020-06-18 23:58:51 +02:00
readme.md add reference link to read 2020-07-19 23:59:28 +02:00

readme.md

C container implementation

prerequisite : make busybox_setup permit to extract rootfs into ./busybox folder

build

classique build

make release

build with debug

make debug

run

classique run

./bin/out.ex /bin/ls

run interactively

./bin/out.ex -i /bin/sh

this code and repository is inspired by these link :

http://tejom.github.io/c/linux/containers/docker/2016/10/04/containers-from-scratch-pt1.html

https://lk4d4.darth.io/posts/unpriv3/

https://blog.lizzie.io/linux-containers-in-500-loc.html

Creating containers - Part 1.html

original link http://crosbymichael.com/creating-containers-part-1.html