Giter Club home page Giter Club logo

container's Introduction

container

Sample code on how to build a container from scratch using Go.

Reference:

Run:

go run container.go run <cmd> <args>

For example:

go run container.go run /bin/bash

Inside the container:

ls
ps
mount

Why would we want to build our own container?

The point is not to build our own container engine that we are gonna use in production but to learn how the building blocks work. It's about understanding what namespaces are, what control group are, and how we can use chroot to look at the subset of directory systems from within the container.

Steps:

  • Look at some characteristics of existing container and try to reproduce from within the container we write ourselves.
  • Start with the hostname namespace.
  • Change the file system that the container can see.
  • Look at namespacing and process IDs and how we need to interact with /proc directory to do that.
  • Use namespacing mounts for temporary file system.
  • Update control groups to limit what the container can use.
  • Make the container rootless.

Setup:

Need to use Ubuntu, instead of Mac is because some of the namespace files that we're gonna use are only defined for Go's Linux.

Docker behavior:

These are some sample docker commands:

docker run ubuntu:latest echo hello
docker run -ti ubuntu:latest /bin/bash

Comparing to docker commands, our program will be a lot similar:

docker              run <image> <cmd> <args>
go run container.go run         <cmd> <args>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.