Files
docker-cli/components/engine/packaging/debian
Daniel Mizyrycki f8333f7048 Packaging, Debian: Add maintainer documentation
Upstream-commit: f226842aa1f9148449558c90de7cdfb61105df28
Component: engine
2013-04-11 20:17:41 -07:00
..

Docker on Debian
================

Docker has been built and tested on Wheezy. All docker functionality works
out of the box, except for memory limitation as the stock debian kernel
does not support it yet.


Building docker package
~~~~~~~~~~~~~~~~~~~~~~~

Building Dependencies: debhelper, autotools-dev and golang


Assuming you have a wheezy system up and running

# Download a fresh copy of the docker project
git clone https://github.com/dotcloud/docker.git
cd docker

# Get building dependencies
sudo apt-get update ; sudo apt-get install -y debhelper autotools-dev golang

# Make the debian package, with no memory limitation support
(cd packaging/debian; make debian NO_MEMORY_LIMIT=1)


Install docker package
~~~~~~~~~~~~~~~~~~~~~~

sudo dpkg -i lxc-docker_0.1.4-1_amd64.deb; sudo apt-get install -f -y