From e5e97a87d4b4183878e5e09824fc3480027a0925 Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Sat, 22 Jun 2019 20:21:57 -0300 Subject: [PATCH] Add default storage for stacks Fixes #341 Fixes #335 --- pwd/session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwd/session.go b/pwd/session.go index db43764..192e653 100644 --- a/pwd/session.go +++ b/pwd/session.go @@ -170,7 +170,7 @@ func (p *pwd) SessionDeployStack(s *types.Session) error { s.Ready = false p.event.Emit(event.SESSION_READY, s.Id, false) - i, err := p.InstanceNew(s, types.InstanceConfig{ImageName: s.ImageName, PlaygroundFQDN: s.Host}) + i, err := p.InstanceNew(s, types.InstanceConfig{ImageName: s.ImageName, PlaygroundFQDN: s.Host, DindVolumeSize: "5G"}) if err != nil { log.Printf("Error creating instance for stack [%s]: %s\n", s.Stack, err) return err