-
Notifications
You must be signed in to change notification settings - Fork 18.7k
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
Package docker for Debian #251
Comments
That'd be a Debian package as in compatible with Debian (stable?), or a Debian package for Ubuntu? 😅 |
Since the package includes an upstart configuration file (and the quick start also suggests to create on), I'd say it's Ubuntu specific. |
@mdaniel could you clarify if this issue is for generic .deb creation, or On Saturday, March 30, 2013, Mikhail Sobolev wrote:
|
Sorry meant @mzdaniel On Saturday, March 30, 2013, Solomon Hykes wrote:
|
@shykes, gh issues have an edit feature :) the keyword in the question was "compatible", how I took it: if the package is installed, can it be used right away on a Debian system. The answer is: no, you'd have to enable daemon start somehow. |
@shykes: We are talking about Debian. We are currently looking for landing docker in the Unstable distro. |
@oz: That'd be a Debian package compatible with Debian Wheezy (currently Testing distro) |
@sa2ajj: Thank you so much, Mikhail, for implementing the Makefile! It is super useful for all developers and neatly done. |
Issue #396 has been solved in branch 396-disabling_memory_limit-feature. Thank you Guillaume! |
As explained in issue #396, Wheesy Debian stock kernel does support limiting memory, only that needs a couple of kernel boot parameters as by default they are disabled. The parameter settings for properly enable kernel suport are: cgroup_enable=memory swapaccount=1 Debian users can fully enjoy docker passing all its tests with standard Wheesy kernel adding the following parameters into their /boot/grub/grub.cfg: linux /boot/vmlinuz-3.2.0-4-amd64 [other parameters] cgroup_enable=memory swapaccount=1 This implies that with good documentation, Debian Wheesy with no special packages fully support Docker |
Debian package has been uploaded to https://mentors.debian.net/package/lxc-docker |
* Packaging: packaging-debian; issue #251: Update files for prerelease
The debian lxc-docker package had been uploaded to http://mentors.debian.net/package/lxc-docker using what it is on docker mainline /packaging/debian . There are a few loose ends at this point, including the need to rewrite /packaging/debian/Makefile logic into /packaging/debian/rules, aligned with debian go packaging guidelines. If you are interested in helping out we will have this package faster and all debian and downstream distros will benefit :) |
On 06/07/2013 12:11 PM, Yaroslav Halchenko wrote:
Thank you Yaroslav for sharing! I am curious to explore these |
btw - 1 more point why eventually you would need to branch anyways.
Yaroslav O. Halchenko, Ph.D. |
Just a quick note, the correct way to add the kernel params "cgroup_enable=memory swapaccount=1" would be to edit the /etc/default/grub: GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1" This way it get's added to all the kernels when the grub.cfg file is regenerated. It's not a good practice to edit grub.cfg file directly seeing as it's a generated file. |
Thank you for the note @denibertovic. I am not convinced this is a good idea. Modifying system files is a big deal and we might be even breaking packaging guidelines in doing so. FWIW, our documentation already addresses the issue: http://docs.docker.io/en/latest/installation/kernel. |
@mzdaniel I was merely referring to the comment in this pull request that suggested modifying the grub.cfg file directly. I did not mean to imply that this should be done in the packaging. Thanks for the link to the docs as i was not aware that the correct way to modify kernel parameters was already outlined there. |
Thank you for sharing all this wealth of information, Yaroslav. I've got On 06/17/2013 11:45 AM, Yaroslav Halchenko wrote:
|
On Tue, 09 Jul 2013, Daniel Mizyrycki wrote:
Sorry for being confusing -- but that is the realm of things in Debian: Debian
That all sounds great, thank you Daniel for the follow up! I am glad I $> cat ~/.gbp.conf use this for more svn-buildpackage like bahaviour:export-dir = ../build-area/ so -- git-buildpackage always builds for me in a clean checkout under export-dir. Cheers! Yaroslav O. Halchenko, Ph.D. |
Most pieces are in place now. github.com/dotcloud/docker-debian has been created, and golang-mux-dev and golang-pty-dev are now official part of the Debian repository on sid. git clone https://github.com/dotcloud/docker-debian.git -b draft-master |
As update: the last dependency, golang-context-dev is now in the Debian repo. http://packages.debian.org/search?keywords=golang-context-dev The last piece of the puzzle is to add the ability to compile docker go code in the Debian builders without needing root. This might require changes in the Debian golang package. |
@mzdaniel in case it's related to having write access to GOROOT (/usr/lib/go) for the go test / go install, Gentoo has a similar issue and I'm solving it with a temporary copy of GOROOT and then changing the GOROOT environment variable to the temporary copy during compile so we can make sure our docker binary is completely static, in case a similar approach might work here (currently being discussed on #1847). If it's not really related, my apologies. |
What's the status of this issue now? git-buildpackage from https://github.com/dotcloud/docker-debian.git (master branch) failed for me with the error "fatal: Not a valid object name upstream/0.5.3+ds1" - is anonscm now the canonical place to build this deb from? |
If there's a mirror on non-Debian services, there should be code to keep it Be aware there's a DFSG repack, so please use uscan to download the tarball On Fri, Nov 1, 2013 at 11:38 AM, Tim Pierce [email protected]:
:wq |
ping @mzdaniel Don't we have a deb package now? |
I'm working on an official one today.
|
Our get.docker.io repo/package works on Debian, we just need to update the documentation to reflect that. And as Paul mentioned, we are almost downstream properly too. :) |
You also need a Debian icon on the front of https://www.docker.io/gettingstarted/ ;) |
What's the status on this one? Do you need help in any way (writing up the docs or something like that?) |
For reference, the ITP is being tracked at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=706060 and it looks like it is currently waiting for golang-sqlite3-dev. |
The latest status update for official Debian packaging is that we're finally in NEW: https://ftp-master.debian.org/new/docker.io_0.6.7+dfsg1-1.html 🍰 |
awesome work everyone! 👍 |
👍 |
Overlay selinux support check
…_tmp [19.03 backport] Windows CI - Corrected LOCALAPPDATA location
[master] sync to upstream engine 7403497
Having Docker packaged as .deb will be awesome. I am currently pushing this issue, and going through the process.
The text was updated successfully, but these errors were encountered: