Showing
with
7,471 additions
and 2,177 deletions.
- +1 −0 .gitignore
- +1 −0 AUTHORS
- +33 −0 CHANGELOG.md
- +5 −7 Dockerfile
- +1 −1 VERSION
- +44 −9 api.go
- +9 −17 api_params.go
- +42 −27 api_test.go
- +4 −1 auth/auth_test.go
- +16 −6 buildfile.go
- +6 −24 buildfile_test.go
- +246 −113 commands.go
- +81 −16 commands_test.go
- +18 −0 config.go
- +279 −85 container.go
- +91 −40 container_test.go
- +27 −0 contrib/host-integration/Dockerfile.dev
- +4 −0 contrib/host-integration/Dockerfile.min
- +130 −0 contrib/host-integration/manager.go
- +53 −0 contrib/host-integration/manager.sh
- +20 −0 contrib/host-integration/manager/systemd
- +15 −0 contrib/host-integration/manager/upstart
- +13 −0 contrib/init/openrc/docker.confd
- +31 −0 contrib/init/openrc/docker.initd
- +13 −0 contrib/init/systemd/docker.service
- +85 −0 contrib/init/sysvinit/docker
- +10 −0 contrib/init/upstart/docker.conf
- +12 −10 contrib/mkimage-arch.sh
- +1 −1 contrib/mkimage-busybox.sh
- +0 −83 contrib/mkimage-debian.sh
- +233 −0 contrib/mkimage-debootstrap.sh
- +1 −1 contrib/mkimage-unittest.sh
- +2 −0 contrib/vim-syntax/syntax/dockerfile.vim
- +54 −26 docker/docker.go
- +16 −0 dockerinit/dockerinit.go
- +2 −4 docs/README.md
- +9 −4 docs/sources/api/docker_remote_api_v1.6.rst
- +1 −1 docs/sources/api/index.rst
- +702 −38 docs/sources/commandline/cli.rst
- +0 −59 docs/sources/commandline/command/attach.rst
- +0 −65 docs/sources/commandline/command/build.rst
- +0 −52 docs/sources/commandline/command/commit.rst
- +0 −14 docs/sources/commandline/command/cp.rst
- +0 −13 docs/sources/commandline/command/diff.rst
- +0 −34 docs/sources/commandline/command/events.rst
- +0 −13 docs/sources/commandline/command/export.rst
- +0 −13 docs/sources/commandline/command/history.rst
- +0 −26 docs/sources/commandline/command/images.rst
- +0 −44 docs/sources/commandline/command/import.rst
- +0 −13 docs/sources/commandline/command/info.rst
- +0 −23 docs/sources/commandline/command/insert.rst
- +0 −13 docs/sources/commandline/command/inspect.rst
- +0 −13 docs/sources/commandline/command/kill.rst
- +0 −24 docs/sources/commandline/command/login.rst
- +0 −13 docs/sources/commandline/command/logs.rst
- +0 −13 docs/sources/commandline/command/port.rst
- +0 −17 docs/sources/commandline/command/ps.rst
- +0 −13 docs/sources/commandline/command/pull.rst
- +0 −13 docs/sources/commandline/command/push.rst
- +0 −13 docs/sources/commandline/command/restart.rst
- +0 −13 docs/sources/commandline/command/rm.rst
- +0 −13 docs/sources/commandline/command/rmi.rst
- +0 −85 docs/sources/commandline/command/run.rst
- +0 −14 docs/sources/commandline/command/search.rst
- +0 −13 docs/sources/commandline/command/start.rst
- +0 −15 docs/sources/commandline/command/stop.rst
- +0 −15 docs/sources/commandline/command/tag.rst
- +0 −13 docs/sources/commandline/command/top.rst
- +0 −7 docs/sources/commandline/command/version.rst
- +0 −13 docs/sources/commandline/command/wait.rst
- BIN docs/sources/{static_files → commandline}/docker_images.gif
- +2 −33 docs/sources/commandline/index.rst
- +1 −1 docs/sources/examples/hello_world.rst
- +2 −1 docs/sources/examples/index.rst
- +120 −0 docs/sources/examples/linking_into_redis.rst
- +0 −2 docs/sources/index.rst
- +1 −1 docs/sources/installation/kernel.rst
- +4 −2 docs/sources/installation/ubuntulinux.rst
- +1 −1 docs/sources/use/baseimages.rst
- +3 −1 docs/sources/use/basics.rst
- +1 −1 docs/sources/use/builder.rst
- +125 −0 docs/sources/use/host_integration.rst
- +1 −0 docs/sources/use/index.rst
- +7 −1 docs/theme/docker/layout.html
- +1 −0 gograph/MAINTAINERS
- +423 −0 gograph/gograph.go
- +503 −0 gograph/gograph_test.go
- +27 −0 gograph/sort.go
- +29 −0 gograph/sort_test.go
- +32 −0 gograph/utils.go
- +13 −6 hack/PACKAGERS.md
- +29 −3 hack/dind
- +88 −2 hack/infrastructure/README.md
- +0 −103 hack/infrastructure/overview.md
- +25 −6 hack/install.sh
- +9 −5 hack/make.sh
- +2 −3 hack/make/binary
- +15 −0 hack/make/dynbinary
- +42 −0 hack/make/dyntest
- +4 −1 hack/make/test
- +30 −29 hack/make/ubuntu
- +60 −15 hack/release.sh
- +2 −2 image.go
- +1 −0 iptables/MAINTAINERS
- +110 −0 iptables/iptables.go
- +18 −0 iptables/iptables_test.go
- +141 −0 links.go
- +104 −0 links_test.go
- +3 −1 lxc_template.go
- +30 −0 namesgenerator/names-generator.go
- +28 −0 namesgenerator/names-generator_test.go
- +548 −0 netlink/netlink.go
- +146 −206 network.go
- +7 −114 network_test.go
- +1 −0 proxy/MAINTAINERS
- +2 −7 { → proxy}/network_proxy_test.go
- +29 −0 proxy/proxy.go
- +93 −0 proxy/tcp_proxy.go
- +1 −115 network_proxy.go → proxy/udp_proxy.go
- +3 −2 registry/registry.go
- +186 −52 runtime.go
- +369 −66 runtime_test.go
- +161 −58 server.go
- +22 −25 server_test.go
- +47 −0 sorter.go
- +36 −0 sorter_test.go
- +5 −5 state.go
- +17 −6 { → sysinit}/sysinit.go
- +153 −20 utils.go
- +44 −0 utils/signal_darwin.go
- +47 −0 utils/signal_linux.go
- +113 −9 utils/utils.go
- +28 −5 utils/utils_test.go
- +162 −50 utils_test.go
- +404 −0 vendor/src/code.google.com/p/gosqlite/sqlite/sqlite.go
- +498 −0 vendor/src/code.google.com/p/gosqlite/sqlite3/driver.go
- +1 −1 z_final_test.go
| @@ -1 +1 @@ | ||
| 0.6.4 | ||
| 0.6.5 |
Oops, something went wrong.
Showing you all comments on commits in this comparison.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
|
Is that really necessary in the base package? This breaks cross compilation of the docker root package when being used as a library. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
|
Yes, it is. This import registers the sqlite3 driver, see line 606. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
arthurlogilab
Jul 13, 2016
Am interested in this functionality, can be of any help to get this patch integrated ?
arthurlogilab
commented on bc8a108
Jul 13, 2016
|
Am interested in this functionality, can be of any help to get this patch integrated ? |
Is that really necessary in the base package? This breaks cross compilation of the docker root package when being used as a library.