docker
http://www.docker.io
Docker complements LXC with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers.
Docker is a great building block for automating distributed systems: large-scale web deployments, database clusters, continuous deployment systems, private PaaS, service-oriented architectures, etc.
- Developed at Virtualization:containers
- Sources inherited from project openSUSE:Factory
-
7
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory:LegacyX86/docker && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
0002-Stripped-dockerinit-binary.patch | 0000001094 1.07 KB | |
80-docker.rules | 0000000345 345 Bytes | |
README_SUSE.md | 0000008196 8 KB | |
docker-1.4.0.tar.bz2 | 0005834548 5.56 MB | |
docker-rpmlintrc | 0000000504 504 Bytes | |
docker.changes | 0000064912 63.4 KB | |
docker.service | 0000000229 229 Bytes | |
docker.socket | 0000000175 175 Bytes | |
docker.spec | 0000005366 5.24 KB | |
libcontainer-apparmor-fixes.patch | 0000001236 1.21 KB | |
sysconfig.docker | 0000000190 190 Bytes |
Revision 11 (latest revision is 155)
Stephan Kulow (coolo)
accepted
request 265920
from
Flavio Castelli (flavio_castelli)
(revision 11)
- Updated to 1.4.0 (2014-12-11): * Notable Features since 1.3.0: - Set key=value labels to the daemon (displayed in `docker info`), applied with new `-label` daemon flag - Add support for `ENV` in Dockerfile of the form: `ENV name=value name2=value2...` - New Overlayfs Storage Driver - `docker info` now returns an `ID` and `Name` field - Filter events by event name, container, or image - `docker cp` now supports copying from container volumes - Fixed `docker tag`, so it honors `--force` when overriding a tag for existing image. - Changes introduced by 1.3.3 (2014-12-11): * Security: - Fix path traversal vulnerability in processing of absolute symbolic links (CVE-2014-9356) - (bnc#909709) - Fix decompression of xz image archives, preventing privilege escalation (CVE-2014-9357) - (bnc#909710) - Validate image IDs (CVE-2014-9358) - (bnc#909712) * Runtime: - Fix an issue when image archives are being read slowly * Client: - Fix a regression related to stdin redirection - Fix a regression with `docker cp` when destination is the current directory
Comments 6
I'm trying to update this to 1.13.0, and just having an odd time of it. Where do we get the tar.xz files from? I can't find them anywhere by the checksum online.
Anyone coming close to building a package for 1.13.0 per chance? I'm busting for an update as the present 1.12.6 is having some bizarre bugs that I'm hoping are fixed in 1.13.0. For details on these bugs please see this thread https://forums.opensuse.org/showthread.php/522711-Why-can-t-I-seem-to-launch-RuneScape-s-NXT-Client-using-Docker-on-openSUSE on the openSUSE forums.
Why has this not be updated to the stable release of ce: 17.09.0-ce
It's fairly complicated to package docker actually. I took a stab at it and its quite a mess (https://build.opensuse.org/package/show/home:avindra/docker?expand=0). Not only is it made of many different components, but it is also written in Go which has no real standards around dependency management.
Docker itself has one of the most complex builds of any project I've seen.
Awesome! I'm glad to hear that you are working on it. I believe you on the difficulty, docker has become a complex beast while it has matured.
Is there a reason why the completion file for zsh is
docker
instead of_docker
? I have to create a symlink_docker
pointing todocker
in/etc/zsh_completion.d
to make it work with zsh.