Debianize
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5edf325
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,17 @@
+dockerd (0.1.1-1) unstable; urgency=low
+
+  * fs branch was merged upstream 
+
+ -- Jeremy Grosser <jeremy@synack.me>  Wed, 13 Mar 2013 00:23:46 +0000
+
+dockerd (0.1-2) unstable; urgency=low
+
+  * Fix upstart script 
+
+ -- Jeremy Grosser <jeremy@synack.me>  Tue, 12 Mar 2013 23:50:16 +0000
+
+dockerd (0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Jeremy Grosser <jeremy@synack.me>  Tue, 12 Mar 2013 03:24:45 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..10024dc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: dockerd
+Section: misc
+Priority: extra
+Maintainer: Jeremy Grosser <jeremy@synack.me>
+Build-Depends: debhelper (>= 8.0.0), golang, git, libsqlite3-dev, pkg-config
+Standards-Version: 3.9.3
+Homepage: https://github.com/dotcloud/docker/
+
+Package: dockerd
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, bsdtar, lxc, curl
+Description: Process manager with superpowers
+ Encapsulates heterogeneous payloads in Standard Containers, and runs them on
+ any server with strong guarantees of isolation and repeatability.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..905b28c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,16 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: docker
+Source: https://github.com/dotcloud/docker
+
+Files: *
+Copyright: 2012-2013 dotCloud, inc.
+License: Apache 2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/debian/dockerd.install b/debian/dockerd.install
new file mode 100644
index 0000000..aa1308b
--- /dev/null
+++ b/debian/dockerd.install
@@ -0,0 +1,2 @@
+build/docker usr/bin
+build/dockerd usr/sbin
diff --git a/debian/dockerd.upstart b/debian/dockerd.upstart
new file mode 100644
index 0000000..453da6e
--- /dev/null
+++ b/debian/dockerd.upstart
@@ -0,0 +1,10 @@
+description     "Run dockerd"
+
+start on runlevel [2345]
+stop on starting rc RUNLEVEL=[016]
+respawn
+
+script
+    test -f /etc/default/locale && . /etc/default/locale || true
+    LANG=$LANG LC_ALL=$LANG /usr/sbin/dockerd
+end script
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b760bee
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ 
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)