Yong Tang
fea7acf0e9
Un-deprecated command line short variant options of -c
.
...
Since 1.9, the following short variant options have been
deprecated in favor of their long variants:
`docker run -c (--cpu-shares)`
`docker build -c (--cpu-shares)`
`docker create -c (--cpu-shares)`
`docker update -c (--cpu-shares)`
However, `-c` is still widely used and is considered as
a convenient option for swarm (see #16271 ).
This fix undeprecated the command line short
variant options of `-c` and updated the deprecated.md.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2016-05-26 08:22:27 -07:00
Sebastiaan van Stijn
56359cccbc
Merge pull request #22976 from vdemeester/22091-condition-followup
...
Invert CgroupDevicesEnabled condition
2016-05-26 15:42:42 +02:00
Vincent Demeester
215324251a
Merge pull request #22999 from deed02392/master
...
Update debian.md
2016-05-26 15:37:55 +02:00
deed02392
6c5f724560
Update debian.md
...
Updated documents markdown file on Debian installation.
Added details on the fact that backports are necessary on Wheezy as discussed in issue #16878
Signed-off-by: George Hafiz <george@hafiz.uk>
2016-05-26 13:47:19 +01:00
Vincent Demeester
e901195634
Merge pull request #22474 from allencloud/make-pkg-platform-support-darwin
...
add architecture_darwin.go in package docker/pkg/platform to support darwin
2016-05-26 14:05:43 +02:00
Vincent Demeester
72fefc0441
Invert CgroupDevicesEnabled condition
...
It feels better to test where it's required than listing everywhere it
is not required.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-05-26 13:09:11 +02:00
Sebastiaan van Stijn
75109b32db
Merge pull request #22861 from vdemeester/daemon-images-search-refactoring
...
Daemon images search refactoring
2016-05-26 12:34:31 +02:00
Vincent Demeester
ecdf75dca6
Merge pull request #22997 from aboch/ports
...
Update port info on network connect/disconnect
2016-05-26 12:18:00 +02:00
Sebastiaan van Stijn
214ab22582
Merge pull request #22991 from justincormack/seccompchown
...
Do not restrict chown via seccomp, just let capabilities control access
2016-05-26 11:19:10 +02:00
allencloud
e18296f4f0
make package docker/pkg/platform support darwin
...
Signed-off-by: allencloud <allen.sun@daocloud.io>
2016-05-26 11:10:29 +08:00
Alexander Morozov
089166ebe2
Merge pull request #23000 from jstarks/use_image_version_for_console_check
...
Windows: Use image version, not OS version for TTY fixup
2016-05-25 17:40:56 -07:00
Alessandro Boch
f198dfd856
Update port info on network connect/disconnect
...
Signed-off-by: Alessandro Boch <aboch@docker.com>
2016-05-25 17:02:50 -07:00
Alexander Morozov
e010610828
Merge pull request #22951 from Microsoft/jjh/ise2
...
Windows: run -it not crash in PowerShell ISE
2016-05-25 16:50:06 -07:00
Sebastiaan van Stijn
8863d6dc5f
Merge pull request #23001 from Djelibeybi/fix-oracle-docs
...
Fix URLs for official Oracle installation guide.
2016-05-25 23:59:31 +02:00
Avi Miller
7711c842be
Fix URLs for official Oracle installation guide.
...
Signed-off-by: Avi Miller <avi.miller@oracle.com>
2016-05-26 07:40:01 +10:00
Sebastiaan van Stijn
64c444b109
Merge pull request #22996 from thaJeztah/update-hub-pricing-link
...
update link to hub plans
2016-05-25 23:23:48 +02:00
Sebastiaan van Stijn
3d782cdbff
update link to hub plans
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-05-25 23:01:13 +02:00
Brian Goff
ff3dc48966
Merge pull request #22956 from Microsoft/jjh/nonttylogin
...
Fix bad error doing docker login in from non TTY
2016-05-25 16:45:48 -04:00
Alexander Morozov
d9db8960fd
Merge pull request #22949 from vdemeester/move-daemon-container-horn
...
Move some container related methods and structs to smaller files
2016-05-25 13:42:07 -07:00
Michael Crosby
dca92044be
Merge pull request #22985 from samuelkarp/awslogs-logging-driver
...
awslogs: Fix a race in mockcwlogsclient
2016-05-25 13:08:00 -07:00
Justin Cormack
9ed6e39cdd
Do not restrict chown via seccomp, just let capabilities control access
...
In #22554 I aligned seccomp and capabilities, however the case of
the chown calls and CAP_CHOWN was less clearcut, as these are
simple calls that the capabilities will block if they are not
allowed. They are needed when no new privileges is not set in
order to allow docker to call chown before the container is
started, so there was a workaround but this did not include
all the chown syscalls, and Arm was failing on some seccomp
tests because it was using a different syscall from just the
fchown that was allowed in this case. It is simpler to just
allow all the chown calls in the default seccomp profile and
let the capabilities subsystem block them.
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-05-25 12:49:30 -07:00
John Starks
6508c015fe
Windows: Use image version, not OS version for TTY fixup
...
A previous change added a TTY fixup for stdin on older Windows versions to
work around a Windows issue with backspace/delete behavior. This change
used the OS version to determine whether to activate the behavior.
However, the Windows bug is actually in the image, not the OS, so it
should have used the image's OS version.
This ensures that a Server TP5 container running on Windows 10 will have
reasonable console behavior.
Signed-off-by: John Starks <jostarks@microsoft.com>
2016-05-25 12:22:52 -07:00
Sebastiaan van Stijn
4746864c2b
Merge pull request #22986 from SvenDowideit/add-make-test
...
Add make test and other small cleanups
2016-05-25 21:03:59 +02:00
Sebastiaan van Stijn
bb80563a81
Merge pull request #22987 from Microsoft/jjh/labeldocs
...
Docs: Label clarification
2016-05-25 20:56:54 +02:00
Samuel Karp
c1ad02ccc8
awslogs: Fix a race in mockcwlogsclient
...
Signed-off-by: Samuel Karp <skarp@amazon.com>
2016-05-25 11:50:22 -07:00
Sebastiaan van Stijn
a5e4aaaf71
Merge pull request #22661 from SvenDowideit/update-compatibility-matrix
...
docs: update graphdriver compatibility matrix
2016-05-25 20:48:39 +02:00
John Howard
b2643b6953
Docs: Label clarification
...
Signed-off-by: John Howard <jhoward@microsoft.com>
2016-05-25 11:48:07 -07:00
Sven Dowideit
a7bf4e4832
docs: update graphdriver compatibility matrix
...
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2016-05-25 18:33:45 +00:00
Sven Dowideit
ad538f6465
Add make test and other small cleanups
...
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2016-05-25 18:30:01 +00:00
Sebastiaan van Stijn
0fe4417a3b
Merge pull request #22908 from vdemeester/7967-since-before-image-filters
...
Add before and since filter to images
2016-05-25 20:15:23 +02:00
David Calavera
60abc96acf
Merge pull request #22943 from vdemeester/21769-fix-detach-keys
...
Fix escape-keys by preserving input if invalid
2016-05-25 09:53:53 -07:00
Vincent Demeester
004ce6b571
Merge pull request #22916 from duglin/FixNetTest
...
Fix flaky TestApiStatsNetworkStats test
2016-05-25 18:51:47 +02:00
John Howard
486a1a03d8
Windows: run -it not crash in ISE
...
Signed-off-by: John Howard <jhoward@microsoft.com>
2016-05-25 09:50:18 -07:00
John Howard
541fba13fc
Error login from non TTY
...
Signed-off-by: John Howard <jhoward@microsoft.com>
2016-05-25 09:29:50 -07:00
John Howard
c7ee503082
Merge pull request #22958 from Microsoft/hcs_rpc
...
Windows: Use the new HCS RPC API
2016-05-25 09:25:22 -07:00
Sebastiaan van Stijn
8c70ab803c
Merge pull request #22953 from Microsoft/jjh/TestRunWorkingDirectory
...
Windows: Fix TestRunWorkingDirectory
2016-05-25 17:54:39 +02:00
Brian Goff
53e2deb159
Merge pull request #22973 from AkihiroSuda/fix22965IntegrationRace
...
Fix a race in pkg/integration.TestChannelBufferTimeout
2016-05-25 11:35:23 -04:00
Sebastiaan van Stijn
4d376e9cc2
Merge pull request #22960 from justincormack/seccompdefnotarm
...
Do not run the seccomp tests that use default.json on non x86 architectures
2016-05-25 17:20:16 +02:00
Brian Goff
a41e823c1b
Merge pull request #22969 from AkihiroSuda/fix22963LogRace
...
Fix a race in daemon/logger.TestCopier
2016-05-25 11:09:51 -04:00
Brian Goff
cef4ea0b97
Merge pull request #22966 from AkihiroSuda/fix22964MemRace
...
Fix a race in pkg/discovery/memory
2016-05-25 10:58:31 -04:00
Vincent Demeester
5bd6067b85
Merge pull request #22968 from mbentley/fix-dm-docs
...
Fixed lost thin pool devicemapper docs
2016-05-25 16:40:52 +02:00
Matt Bentley
0b8ea4387a
Re-apply changes made in 24ec73f
...
Signed-off-by: Matt Bentley <matt.bentley@docker.com>
2016-05-25 08:46:39 -04:00
Matt Bentley
79205c3f06
Fix thin pool devicemapper docs overwritten
...
Signed-off-by: Matt Bentley <matt.bentley@docker.com>
2016-05-25 08:45:51 -04:00
Vincent Demeester
750e16f57c
Add before and since filter to images
...
Add support for two now filter on the `images` command : `before` and
`since`. They work the same as the one on the `ps` command but for
images.
$ docker images --filter before=myimage
# display all images older than myimage
$ docker images --filter since=myimage
# display all images younger than myimage
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-05-25 13:49:10 +02:00
Vincent Demeester
2a4b4a8133
Merge pull request #22962 from normalfaults/b
...
fixed spelling error in windows.go
2016-05-25 12:21:08 +02:00
Sebastiaan van Stijn
cd159fba85
Merge pull request #22952 from tophj-ibm/multiarch_daemon_test_fix
...
Multi-arch: fix TestBuildOnDisabledBridgeNetworkDaemon
2016-05-25 10:19:41 +02:00
Lei Jitang
5383824e08
Merge pull request #22974 from albers/completion-ps-filters
...
bash completion for `docker ps -f {before,since}`
2016-05-25 16:05:04 +08:00
Vincent Demeester
522698dd43
Merge pull request #22967 from srinsriv/master
...
Update dind
2016-05-25 09:55:10 +02:00
Harald Albers
c49d327406
bash completion for docker ps -f {before,since}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-25 09:35:33 +02:00
Vincent Demeester
9f5a2c6e33
Merge pull request #22408 from yongtang/21976-allow-dns-and-net-host
...
The option --dns and --net=host should not be mutually exclusive.
2016-05-25 09:11:26 +02:00