-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split docker cli into separate package, deb packaging #128
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ Vcs-Git: git://github.com/docker/docker.git | |
|
||
Package: docker-ce | ||
Architecture: linux-any | ||
Depends: iptables, ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} | ||
Recommends: aufs-tools, | ||
Depends: docker-ce-cli, containerd, ${shlibs:Depends} | ||
Recommends: abufs-tools, | ||
ca-certificates, | ||
cgroupfs-mount | cgroup-lite, | ||
git, | ||
|
@@ -29,3 +29,28 @@ Description: Docker: the open-source application container engine | |
language, framework or packaging system. That makes them great building blocks | ||
for deploying and scaling web apps, databases, and backend services without | ||
depending on a particular stack or provider. | ||
|
||
Source: docker-ce-cli | ||
Section: admin | ||
Priority: optional | ||
Maintainer: Docker <[email protected]> | ||
Standards-Version: 3.9.6 | ||
Homepage: https://dockerproject.org | ||
Vcs-Browser: https://github.com/docker/cli | ||
Vcs-Git: git://github.com/docker/cli.git | ||
Package: docker-ce-cli | ||
Architecture: linux-any | ||
Depends: ${shlibs:Depends} | ||
Recommends: | ||
Conflicts: docker (<< 1.5~), docker.io, lxc-docker, lxc-docker-virtual-package, docker-engine, docker-engine-cs, docker-ee-cli | ||
Replaces: | ||
Description: Docker CLI: the open-source application container engine | ||
Docker is an open source project to build, ship and run any application as a | ||
lightweight container | ||
. | ||
Docker containers are both hardware-agnostic and platform-agnostic. This means | ||
they can run anywhere, from your laptop to the largest EC2 compute instance and | ||
everything in between - and they don't require you to use a particular | ||
language, framework or packaging system. That makes them great building blocks | ||
for deploying and scaling web apps, databases, and backend services without | ||
depending on a particular stack or provider. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cli/contrib/completion/fish/docker.fish usr/share/fish/vendor_completions.d/ | ||
cli/contrib/completion/zsh/_docker usr/share/zsh/vendor-completions/ |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ case "$1" in | |
if ! getent group docker > /dev/null; then | ||
groupadd --system docker | ||
fi | ||
# TODO Needs upgrade vs. install logic handling here | ||
if ctr --namespace docker container info dockerd 2&>1 > /dev/null ; then | ||
docker engine init | ||
fi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This script is far too naive for the final product, but should be enough to get us bootstrapped. |
||
fi | ||
;; | ||
abort-*) | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
engine/README.md | ||
cli/README.md |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should change this to
https://docker.com