Justin Cormack
baaa38bc4c
default to Docker experimental; later we will need to do multiple builds
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-15 10:28:26 +01:00
Justin Cormack
4544bbac58
update docker to 1.12.0-rc1
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-15 10:19:31 +01:00
Justin Cormack
759ad55f03
Update to docker 1.12-dev plus proxy patches, close to what will be rc1
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-14 14:13:36 +01:00
Ian Campbell
c5940b3479
Bind the original /var/log onto /run/log
...
So that it can be inspected while debugging.
Signed-off-by: Ian Campbell <ian.campbell@docker.com >
2016-06-13 12:07:26 +01:00
Ian Campbell
a2ba682878
Use /proc/mounts in docker init script
...
Switch one instance of /etc/mtab.
Signed-off-by: Ian Campbell <ian.campbell@docker.com >
2016-06-13 12:07:26 +01:00
Justin Cormack
41f39f7efe
missing /proc.mounts
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-13 10:40:10 +01:00
Justin Cormack
2efda11b65
remove transfused dependency from hostsettings by putting log mounts in docker startup
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-10 11:26:32 +01:00
Justin Cormack
5b4ebde5f7
remove special treatment of /etc/docker/daemon.conf as we no longer have a watch on it
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-08 13:47:09 +01:00
Ian Campbell
de6e7f9cbe
Point chronyd at gateway when ntp=gateway is given on the kernel cmdline.
...
Reconfigure chronyd in a udhcpc post-bound hook and restart it, but use
conditionalrestart so it is not started if it isn't running, which is the case
during boot when this hook happens from init.d/networking via ifup, running
"service ... start" in that context results in the daemon running but the
service db saying it isn't.
Doing it in the udhcpc hook leaves a nice hole where support for getting the
NTP server via DHCP can fit in once it is available.
This also switches from using "initstepslew" to "makestep", the former was
responsible for the long delay starting chronyd (meaning we can now drop
"before chronyd" from Docker's init dependencies), while the later will force a
step if the time is out by more than the configured amount (half a second
here), meaning it will be corrected on resume. The rest of the time it chrony
will do the usual slewing to keep the clock accurate. Passing -1 as the limit
to "makestep" ensures the step will always occur, if it were positive it would
only be done that number of times.
We add "iburst" and "minpoll 2" to the default configuration file to speed up
initial sync and resync after sleep respectively, resync after sleep happens in
a couple of seconds. In "ntp=gateway" mode we also patch in "trust", this isn't
in the default config file since we won't be so sure about DHCP provided
servers, but when talking to a host provided NTP we want to use its time (for
sync accross host mounts) even if it has a crazy idea about what the time is.
With this we can also remove the 15min ntp sync, which in turn gets rid of the
need for cron.
Signed-off-by: Ian Campbell <ian.campbell@docker.com >
2016-06-08 13:19:35 +01:00
Justin Cormack
1fab4151ef
fix #169 only do /tmp bind mount if /Mac/tmp exists
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-03 15:15:20 +01:00
Justin Cormack
0e4c154bcf
Update docker to 1.11.2+patches
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-03 13:27:32 +01:00
Magnus Skjegstad
9c5aee352d
also bindmount /tmp once
...
Signed-off-by: Magnus Skjegstad <magnus@skjegstad.com >
2016-06-03 01:44:11 +01:00
Justin Cormack
2c6ba517e9
fix typo
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-02 13:56:20 +01:00
Justin Cormack
e94dff4d11
avoid rebindmounting directories on docker restart
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-06-02 13:18:27 +01:00
Justin Cormack
3f513f2368
move log mount to hostsettings not docker startup
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-05-27 11:41:46 -07:00
Justin Cormack
50bb644acb
Do not try to keep log files, fix #154
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-05-26 14:24:05 -07:00
Dave Tucker
3a02f608d5
Set proxy setting in Docker init script
...
Signed-off-by: Dave Tucker <dt@docker.com >
2016-05-16 12:07:01 +01:00
Justin Cormack
fc370b0c21
Revert "replace chronyd with sntpc, sync every 15s not 15m"
...
We should not use ntp.org this frequently, need to work out something
that uses host time mainly.
This reverts commit 382f99529d .
2016-05-10 11:29:16 +01:00
Justin Cormack
382f99529d
replace chronyd with sntpc, sync every 15s not 15m
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-05-10 11:00:51 +01:00
Justin Cormack
f86f4bfae4
clean docker.git
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-05-04 18:52:22 +01:00
David Scott
a326a8b5ab
docker: argument is now "--userland-proxy-path"
...
This was changed from "--userland-proxy-bin" in response to review
feedback.
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-29 14:56:36 +01:00
David Scott
ae3aec0522
Update docker to 1.11.1
...
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-29 14:00:45 +01:00
Justin Cormack
7d7ff562a7
Remove special case for insecure registry
...
This is now in the daemon.json config file see
https://github.com/docker/pinata/issues/2771
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-26 14:17:16 +01:00
Justin Cormack
2206cd8a30
remove extra copy of docker that build adds
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-18 16:48:37 +01:00
Justin Cormack
b152e5f20f
use (old) binary build of docker arm for now as no cross build yet
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-18 11:17:32 +01:00
Rolf Neugebauer
242a505bc1
shutdown: use poweroff -f instead of halt -f
...
This is makes fast shutdown work on Hyper-V
While at it, also clean up whitespaces. The file was mixed
tabs and spaces. Now it uses spaces.
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com >
2016-04-15 15:10:28 +01:00
David Scott
29146734e5
docker: switch the branch to djs55/moby temporarily
...
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-13 22:50:40 +01:00
David Scott
4685b8af9e
Bump docker to 1.11.0 final
...
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-13 21:43:17 +01:00
Justin Cormack
0d45d82b7b
bump to docker 1.11.0-rc5
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-12 10:28:25 +01:00
Justin Cormack
178f331c66
use docker git fork for our patches version, rather than having patches here, for more transparency
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-11 12:32:11 +01:00
Justin Cormack
b76032f9fe
clean up config options
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-11 11:09:55 +01:00
Justin Cormack
43c22fcffa
change find to use keys, fix /etc/docker copying using find
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-08 14:03:43 +01:00
Justin Cormack
167123a363
add insecure registry support
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-08 13:47:44 +01:00
Justin Cormack
885cdd15f9
allow use of any files under /etc/docker eg /etc/docker/certs.d/
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-08 13:28:15 +01:00
Justin Cormack
6859c551ee
more uses of moobyconfig in docker config
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-08 13:14:19 +01:00
Justin Cormack
6b396e200c
use mobyconfig some more in docker config
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-08 13:06:55 +01:00
Justin Cormack
a6b0c50198
update to -rc4
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-07 09:55:57 +01:00
Justin Cormack
09a98bf3e2
remove 9pudc, unused and not being fixed
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-04 18:21:01 +01:00
David Scott
edcf29c5e4
docker: if network=slirp or native/port-forwarding=true, forward ports
...
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-04 12:41:45 +01:00
David Scott
1d66615bc4
docker: add a patch to add --userland-proxy-bin argument
...
This will let us override the `docker-proxy` with the enhanced host
port-forwarding aware version.
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-04 12:41:45 +01:00
David Scott
96dd99326f
docker: compile from scratch rather than download binaries
...
A later patch will apply a non-upstream patch to docker.
Signed-off-by: David Scott <dave.scott@docker.com >
2016-04-04 12:41:45 +01:00
Justin Cormack
f4a21e4d1f
make tar more correct, by defining z
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-04 12:20:18 +01:00
Justin Cormack
b58f06212d
fix typo in tar extract
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-04 12:13:45 +01:00
Justin Cormack
249151a445
Increase p and n ulimits to match boot2docker, fixes #64
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-04 11:44:27 +01:00
Justin Cormack
fac0264ecf
clean up unpacking docker rc3 bundle
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-03 09:34:01 +01:00
Justin Cormack
1e0778657c
update to docker 1.11.0-rc3
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-04-02 09:12:20 +01:00
Justin Cormack
e891d65e97
Support for 1.11.0-rc2, fix #57
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-03-31 18:54:05 +01:00
Justin Cormack
6d890f007b
switch root to a tmpfs filesystem, so pivot_root works, should make #57 work now
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-03-29 22:09:23 +01:00
Justin Cormack
5fc48fbf70
clean up log transfer
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-03-18 11:20:28 +00:00
Justin Cormack
33d6a8adf0
fix typo properly
...
Signed-off-by: Justin Cormack <justin.cormack@docker.com >
2016-03-17 19:47:14 +00:00