Docker 1.13 needs more disk space

Swarm mode now `fallocate`s a whole lot of space, so give it more so
test passes.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2016-11-14 11:20:09 +00:00
parent afc48d581d
commit b4f2d92bd6
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ KERNEL="alpine/kernel/x86_64/vmlinuz64"
INITRD="alpine/initrd.img"
CMDLINE="earlyprintk=serial console=ttyS0"
[ -f disk.img ] || dd if=/dev/zero of=disk.img bs=1m count=100
[ -f disk.img ] || dd if=/dev/zero of=disk.img bs=1m count=256
MEM="-m 1G"
SMP="-c 1"