HuKeping
af053ccf6b
restart: Fix an error about arguments missing
...
Function shouldRestart() checks the restart policy and records the
debug info and there should be two arguments in the log.Debugf().
Prior to the this patch, the logs were something like this:
- client: $ docker run --restart=on-failure:3 ubuntu /bin/sh -c 'exit 1'
- daemon: INFO[0168] ...
DEBU[0168] stopping restart of container %!s(int=3) because maximum
failure could of %!d(MISSING) has been reached
INFO[0086] ...
Btw, fix a spelling error in the same file:
- cotnainer -> container
----------------------------------------
Signed-off-by: Hu Keping <hukeping@huawei.com>
2015-01-06 12:25:39 +08:00
Michael Crosby
d7b6f18688
Merge pull request #9907 from duglin/dug4Builder
...
Modify MAINTAINERS per erikh's suggestion
2015-01-05 17:38:58 -08:00
Michael Crosby
f0d7616c27
Merge pull request #9914 from jfrazelle/drone-py
...
Add docker-py tests to drone.
2015-01-05 17:37:25 -08:00
Michael Crosby
61f873792b
Merge pull request #9830 from pnasrat/release-include-announce-list
...
Update release checklist to include announce mail.
2015-01-05 16:46:28 -08:00
Michael Crosby
4235e2796b
Merge pull request #9721 from SvenDowideit/add-cloudfront-invalidation-to-docs
...
Add docs Cloudfront cache invalidation
2015-01-05 16:25:20 -08:00
Michael Crosby
ef1dee700c
Merge pull request #8961 from mmdriley/allow-hyphens-in-namespaces
...
Allow hyphens in namespaces.
2015-01-05 16:23:36 -08:00
Michael Crosby
fcc4ba5ec8
Merge pull request #9910 from crosbymichael/update-readme-fred
...
Minor copy edits and updates to README
2015-01-05 15:46:58 -08:00
Jessica Frazelle
a1bfe3aa42
Add docker-py tests to drone.
...
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
2015-01-05 15:00:32 -08:00
Alexander Morozov
25f8c26640
Merge pull request #9097 from brahmaroutu/publish_ports_8899
...
add ability to publish range of ports
2015-01-05 14:05:47 -08:00
Jessie Frazelle
e404113afc
Merge pull request #9908 from crosbymichael/warning-graphdriver
...
Add warning log when high priority graphdriver used before
2015-01-05 12:06:28 -08:00
Alexander Morozov
356b035c4b
Merge pull request #9909 from carmi/master
...
Update syntax/vim README with Vundle instructions
2015-01-05 11:31:43 -08:00
Jessie Frazelle
579b6e3269
Merge pull request #9899 from gdi2290/patch-1
...
Update License year to range 2013-2015
2015-01-05 11:31:12 -08:00
Alexander Morozov
1d4d8bc0c0
Merge pull request #9911 from jfrazelle/change-test-to-dockerproject.com
...
Change url of robots.txt test to dockerproject.com
2015-01-05 11:30:53 -08:00
Jessica Frazelle
367e66e972
Change url of robots.txt test to dockerproject.com
...
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
2015-01-05 11:13:37 -08:00
Evan Carmi
8d1485bd3f
Update syntax/vim README with Vundle instructions
...
Signed-off-by: Evan Carmi <evan@ecarmi.org>
2015-01-05 11:08:22 -08:00
Matthew Riley
6c126d443b
Allow hyphens in namespaces.
...
Signed-off-by: Matthew Riley <mattdr@google.com>
2015-01-05 11:06:16 -08:00
Fred Lifton
5ad41ce01a
Revises link to point to Fig
...
Docker-DCO-1.1-Signed-off-by: Fred Lifton <fred.lifton@docker.com> (github: fredlf)
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2015-01-05 11:03:25 -08:00
Fred Lifton
99a5da5ada
Minor copy edits and updates to README. Added CTA for keeping the projects list current.
...
Docker-DCO-1.1-Signed-off-by: Fred Lifton <fred.lifton@docker.com> (github: fredlf)
2015-01-05 11:03:17 -08:00
Michael Crosby
3011aa4e99
Remove error return from check graph driver func
...
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2015-01-05 10:34:49 -08:00
Doug Davis
04ee071692
Modify MAINTAINERS per erikh's suggestion
...
Signed-off-by: Doug Davis <dug@us.ibm.com>
2015-01-05 10:28:36 -08:00
Vincent Batts
53253ee1fb
Merge pull request #9886 from crquan/patch-1
...
need to call syscall.Unmount with MNT_DETACH
2015-01-05 13:17:11 -05:00
James Turnbull
0787878e64
Merge pull request #9877 from fredlf/readme-fig-link
...
Corrects link to point to Fig
2015-01-05 07:04:47 -05:00
PatrickJS
e3c5e0ceb0
Update License year to range 2013-2015
...
Copyright notices must reflect the current year. This commit updates the listed year to 2015 with a starting year of 2013 from
a27b4b8cb8
Docker-DCO-1.1-Signed-off-by: Patrick Stapleton <github@gdi2290.com> (github: gdi2290)
2015-01-04 16:59:34 -08:00
Derek
9bbed5ab4c
change to lazy Unmount
...
syscall.Unmount failed sometimes when user interrupted exporting,
for example a Ctrl-C, or pipe to commands which closed the pipe early,
like "docker export <container_name> | file -"; this syscall.Unmount
could sometimes return EBUSY and didn't actually umount the filesystem;
which would cause a following export command fail to mount;
change to lazy Unmount with MNT_DETACH can fix the problem, this is
the same behavior as in Shutdown;
```text
time="2015-01-03T21:27:26Z" level=error msg="Warning: error unmounting device
34a3e77cdbca17ceffd0636aee0415bb412996adb12360bfe2585ce30467fa8e: device or resource busy"
```
```
$ docker export thirsty_ardinghelli | file -
/dev/stdin: POSIX tar archive
time="2015-01-03T21:58:17Z" level=fatal msg="write /dev/stdout: broken pipe"
$ docker export thirsty_ardinghelli
time="2015-01-03T21:54:33Z" level=fatal msg="Error: thirsty_ardinghelli: Error getting container
34a3e77cdbca17ceffd0636aee0415bb412996adb12360bfe2585ce30467fa8e from driver devicemapper:
Error mounting '/dev/mapper/docker-253:0-3148372-34a3e77cdbca17ceffd0636aee0415bb412996adb12360bfe2585ce30467fa8e'
on '/var/lib/docker/devicemapper/mnt/34a3e77cdbca17ceffd0636aee0415bb412996adb12360bfe2585ce30467fa8e': device or resource busy"
```
Signed-off-by: Derek Che <drc@yahoo-inc.com>
2015-01-04 00:10:48 +00:00
Alexander Morozov
7eb5262d1b
Merge pull request #9020 from daehyeok/log_exec
...
Add exec event log
2015-01-03 10:40:00 -08:00
Daehyeok Mun
fc7f055096
Add list of events in remote API docs
...
Add exec create and exec start to list of events in remote API docs
Signed-off-by: Daehyeok Mun <daehyeok@gmail.com>
2015-01-03 20:40:25 +09:00
Daehyeok.Mun
e3d813f37f
Add exec event create/start log
...
added exec event log follwing issue #8662 proposal.
logging events for exec create and start API
Signed-off-by: daehyeok mun <daehyeok@daehyeokui-MacBook-Air.local>
2015-01-03 20:38:25 +09:00
Srini Brahmaroutu
2338a9cf5a
add ability to publish range of ports
...
Closes #8899
Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
2015-01-02 23:21:26 +00:00
Fred Lifton
4669d98bff
Corrects link to point to Fig.
...
Docker-DCO-1.1-Signed-off-by: Fred Lifton <fred.lifton@docker.com> (github: fredlf)
2015-01-02 11:18:26 -08:00
Tianon Gravi
b2ab733c99
Merge pull request #9863 from albers/bash-completion
...
Add options to bash completion and sort options
2015-01-01 09:49:29 -07:00
daehyeok mun
3c03827e73
Add warnning log when other graphdrvier(storage driver) used before
...
added warnning log when other graphdrvier(storage driver) used before for feature request #8270
Signed-off-by: Daehyeok Mun <daehyeok@gmail.com>
2015-01-02 00:01:26 +09:00
Harald Albers
70161b4d45
Sort options in bash completion alphabetically
...
This introduces a sort order for options:
Arrange options sorted alphabetically by long name with the short
options immediately following their corresponding long form.
Signed-off-by: Harald Albers <github@albersweb.de>
2015-01-01 11:21:42 +01:00
Harald Albers
50eb14244d
Add missing options to bash completion
...
Signed-off-by: Harald Albers <github@albersweb.de>
2015-01-01 11:21:42 +01:00
Fred Lifton
d7f72188ff
Merge pull request #9848 from SvenDowideit/add-restart-policy-delay-docs
...
Document that there is a delay before the --restart policy restart, and ...
2014-12-31 12:13:21 -08:00
Fred Lifton
529011cf41
Merge pull request #9859 from NateEag/patch-1
...
Grammar fix and style tweak in docs/sources/faq.md
2014-12-31 11:58:49 -08:00
Fred Lifton
880aeab00d
Merge pull request #9491 from SvenDowideit/note-that-volumes-in-b2d-are-special
...
Add a note to point out to new users that B2D bind-mounts are special-ish
2014-12-31 11:15:01 -08:00
James Turnbull
31471ea2fb
Merge pull request #9519 from SvenDowideit/1.4-volume-initialization-in-docker-create
...
Talk up the 1.4 change to initialise volumes at time
2014-12-31 11:59:14 -05:00
Nate Eagleson
4e679f218c
Grammar fix and style tweak in docs/sources/faq.md
...
Just a few things I thought could be improved in the FAQ.
Signed-off-by: Nate Eagleson <nate@nateeag.com>
2014-12-30 21:36:16 -05:00
Jessie Frazelle
a444643f97
Merge pull request #9843 from jfrazelle/add-jenkins
...
Add Jenkins Build Status
2014-12-30 09:32:32 -08:00
Jessie Frazelle
ed7a1fc8f2
Merge pull request #9822 from tianon/01autoremove-kernels
...
Remove /etc/apt/apt.conf.d/01autoremove-kernels in mkimage/debootstrap
2014-12-30 09:32:04 -08:00
Sven Dowideit
e52988528d
Add a note to point out to new users that B2D bind-mounts are special-ish
...
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
Signed-off-by: Sven Dowideit <SvenDowideit@docker.com>
2014-12-30 13:37:31 +10:00
Sven Dowideit
1d4a138670
Talk up the 1.4 change to initialise volumes at time
...
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
Signed-off-by: Sven Dowideit <SvenDowideit@docker.com>
2014-12-30 13:08:53 +10:00
Sven Dowideit
cfaffd1ad2
Add docs Cloudfront cache invalidation
...
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
Signed-off-by: Sven Dowideit <SvenDowideit@docker.com>
2014-12-30 12:58:56 +10:00
Sven Dowideit
35873e747d
Document that there is a delay before the --restart policy restart, and that its double the last one
...
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
Signed-off-by: Sven Dowideit <SvenDowideit@docker.com>
2014-12-30 12:36:04 +10:00
Alexander Morozov
12fef2d8df
Merge pull request #9800 from vieux/execIDs_inspect
...
Add ExecIDs to docker inspect
2014-12-29 15:32:33 -08:00
Victor Vieux
c0bb1c77ee
add test
...
Signed-off-by: Victor Vieux <vieux@docker.com>
2014-12-29 23:00:17 +00:00
Jessie Frazelle
d47020d18a
Merge pull request #9827 from LK4D4/test_for_removing_cgroups
...
Test for issue #9699
2014-12-29 13:46:29 -08:00
Jessie Frazelle
b4d09da715
Merge pull request #9847 from LK4D4/fix_net_host_test
...
Fix net host test
2014-12-29 13:28:15 -08:00
Jessica Frazelle
7b0519d1ec
Add Jenkins Build Status
...
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
2014-12-29 13:15:51 -08:00
Alexander Morozov
e98c08a88f
Rewrite TestRunNetHost to compare namespaces
...
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
2014-12-29 13:10:30 -08:00