Projects in the topic docker
Docker is a set of platform as a service products that use OS-level virtualization to deliver software in packages called containers.


Work reports 2.0

a project by kalabiyau

Micro-service for - making a report

Updated almost 5 years ago. 2 hacker ♥️.

Portus: build Docker images from Dockerfile

a project by flavio_castelli

Minimal objective

This is what we consider is the minimum result we can achieve at the end of the hackweek.

Updated almost 5 years ago. 4 hacker ♥️.

Docker: Image Rebasing

an invention by cyphar

git rebase is a very useful construct in source control management, as it allows you to re-apply your changes atop a different branch of the same repository. While this concept transitions perfectly to container management (updating a container could be as easy as a docker rebase), and the Docker client is inspired by the git semantics, Docker has no such feature (in fact, Solomon Hykes used rebase and merge as examples of things "that we don't want"). Currently, zypper-docker works by applying an updated layer on top of an existing image. While this does work quite well, it separates the process of updating the base image and updating all of your derivative images (you need to re-download new packages for each derivative image). So, this project will be working on implementing something like git rebase for Docker images. There are several issues with this, mainly involving the fact that we are rebasing binaries and not source code, so merge conflicts will probably be quite messy. But it should be possible to implement some form of simple rebase method (which will essentially fall back to docker build in the worst case, which is what you were going to run anyway). By maximising the reuse of the existing image layers, it should be possible to reduce build times quite significantly.

Updated almost 5 years ago. 4 hacker ♥️.

Golang: Hack on DroneCI

an idea by tboerger

I want to spend some time on hacking missing features of the awesome CI tool Drone. It's written in Golang and is built around docker.

Updated about 7 years ago. No love. Has no hacker: grab it!

Add PIDs cgroup support to runC and Docker

an invention by cyphar

Currently, dealing with forkbombs and similar issues with Docker and runC is not very nice (you have to set a global limit for all Docker processes or you have to limit kernel memory which isn't very practical). I'm going to work on getting some [patches][2] merged into runC and Docker to enable PIDs support for Docker.

Updated almost 5 years ago. 1 hackers ♥️.