containers-from-scratch
containers-from-scratch copied to clipboard
Writing a container in a few lines of Go code, as seen at DockerCon 2017 and on O'Reilly Safari
Since i don't have a linux env, i thought it would be a good idea to make this tutorial in a containerized ubuntu env. So after docker run -it ubuntu...
Hi, I'm following the source code and the thing i noticed was, I wasn't able to access and external network endpoints. All commands like `ping`, `wget` etc. failed from inside...
Hello Liz, Fantastic session . howeever when i am trying to following the instructions for setting rootfs using chroot, not able to make it work root@simpleLinuxVM:/# go run main.go run...
This proof of concept and related talks helped me getting a grasp about container internals, to then be able to solve some other related issues.. and in a really entertaining...
- `os.Mkdir()` does not works for the first time running the container. So I used `os.MkdirAll()` as it creates every folder in the path recursively. - `cg()` should be called...