sofuture / docker-debian

Customized Debian Docker images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Customized Docker Debian images

Customizations

All images are shipped with dumb-init. The main purpose of it is to manage zombie processes and properly pass signals into container.

There are also special cleaning script for each image. If you want to keep your image slim, add this to the end of your Dockerfile:

RUN test -f /cleanup.sh && sh /cleanup.sh

Debian Tall Docker Repository on Quay

Contains:

  • libc
  • ca-certificates
  • busybox

Main purpose of this image is to run Go or static-linked binaries. No package manager is present.

Debian Grande Docker Repository on Quay

Contains cut debootstrapped system (minbase variant). dpkg works here.

Debian Venti Docker Repository on Quay

Image with Go build environment and batteries included. For start as Docker-in-docker use wrapdocker as entrypoint or just run it inside container.

Usage

make debian-tall
make debian-grande
make debian-venti

or simply

make all

Also, if you have caching http-proxy you can use it in build:

http_proxy=http://proxy.addr.ess:port make debian-tall

About

Customized Debian Docker images

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Shell 81.4%Language:Makefile 18.6%