diff --git a/internal/command/launch/launch_frameworks.go b/internal/command/launch/launch_frameworks.go index 206abbb9ba..ec4a08f8e2 100644 --- a/internal/command/launch/launch_frameworks.go +++ b/internal/command/launch/launch_frameworks.go @@ -299,8 +299,11 @@ func (state *launchState) scannerSetAppconfig(ctx context.Context) error { var appVolumes []appconfig.Mount for _, v := range srcInfo.Volumes { appVolumes = append(appVolumes, appconfig.Mount{ - Source: v.Source, - Destination: v.Destination, + Source: v.Source, + Destination: v.Destination, + AutoExtendSizeThreshold: v.AutoExtendSizeThreshold, + AutoExtendSizeIncrement: v.AutoExtendSizeIncrement, + AutoExtendSizeLimit: v.AutoExtendSizeLimit, }) } appConfig.SetMounts(appVolumes)