mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Compare commits
1 Commits
v0.7.0-rc6
...
debian/0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf369bd1b8 |
17
debian/changelog
vendored
Normal file
17
debian/changelog
vendored
Normal file
@@ -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
|
||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
||||
8
|
||||
14
debian/control
vendored
Normal file
14
debian/control
vendored
Normal file
@@ -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.
|
||||
16
debian/copyright
vendored
Normal file
16
debian/copyright
vendored
Normal file
@@ -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.
|
||||
2
debian/dockerd.install
vendored
Normal file
2
debian/dockerd.install
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
build/docker usr/bin
|
||||
build/dockerd usr/sbin
|
||||
10
debian/dockerd.upstart
vendored
Normal file
10
debian/dockerd.upstart
vendored
Normal file
@@ -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
|
||||
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
@@ -0,0 +1 @@
|
||||
README.md
|
||||
13
debian/rules
vendored
Executable file
13
debian/rules
vendored
Executable file
@@ -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 $@
|
||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
Reference in New Issue
Block a user