Earlier quoted context omitted.
Have you try to use the mount option/instruction to do so?
Haven't tried anything yet. Just wondering if this is an idiomatic use case to grant container access to global resources.
Docker 0.7 runs on all Linux distributions
41–50 of 131 posts
Re: Docker 0.7 runs on all Linux distributions
#42Re: Docker 0.7 runs on all Linux distributions
#43Will it be possible to run Docker containers on Android? I may be asking this incorrectly. So correct me if I have a mistake. My question might be "Will it be possible to run Docker containers on Dalvik VM?" or "Can I run an Android in Docker container?"
Re: Docker 0.7 runs on all Linux distributions
#44Unfortunately it looks like the documentation has not been updated yet... So much for feature #7. Documentation should be part of the development/release process
Re: Docker 0.7 runs on all Linux distributions
#45Can anyone please tell about the overhead of Docker, compared to no-container scenario (not against a fat vm scenario)? I am a "dev" not "ops", but we might make use of Docker in our rapidly growing service oriented backend... Thanks
For process isolation, the overhead is approximately zero. It adds a few milliseconds to initial execution time, then CPU and memory consumption of your process should be undistinguishable from a no-container scenario. For disk IO, as long as you use data volumes [1] for performance-critical directories (typically the database files), then overhead is also zero. For other directories, you incur the overhead of the un…
Re: Docker 0.7 runs on all Linux distributions
#46Re: Docker 0.7 runs on all Linux distributions
#47Earlier quoted context omitted.
The 42 layer limit is still there... But not for long! There is a fix underway to remove the limitation from all drivers, including aufs. Instead of lifting the limit for some drivers first (which would mean some images on the index could only be used by certain drivers - something we really want to avoid), we're artificially enforcing the limit on all drivers until it can be lifted altogether. If you want to follow…
One thing I've been wondering is whether the 42 limit was related to performance considerations. If yes, I actually somewhat like it - I'm a proponent to making systems behave in a way that they won't come around and bite you. Will a container based on, say, 200 layers still load and run with reasonable performance?
Of course if you had infinite memory and those kernel data structures were designed to never overflow, then you would have a performance problem on your hands instead of a kernel panic :)
Re: Docker 0.7 runs on all Linux distributions
#48A few details on the "standard linux support" part. To remove the hard dependency on the AUFS patches, we moved it to an optional storage driver, and shipped a second driver which uses thin LVM snapshots (via libdevmapper) for copy-on-write. The big advantage of devicemapper/lvm, of course, is that it's part of the mainline kernel. If your system supports AUFS, Docker will continue to use the AUFS driver. Otherwise i…
Any drawbacks to using lvm comapared to AUFS? I'd like to switch to Debian from Ubuntu - will I notice any performance differences or other restrictions?
Re: Docker 0.7 runs on all Linux distributions
#49Earlier quoted context omitted.
does this mean that docker will run on 32 bit systems ?
Not yet, but that's coming very soon. We've been artificially limiting the number of architectures supported to limit the headache of managing cross-arch container images. We're reaching the point where that will no longer be a problem - meanwhile the Docker on Raspberry Pi community is growing restless and we want to make them happy :)
Re: Docker 0.7 runs on all Linux distributions
#50Annoying typo in the submission's title, it would be awesome if someone could fix that. It's just s/distrubtions/distributions/, obviously.
Fixed. Sorry about that.