Skip to content

Commit

Permalink
Merge 90859cf into f37adaf
Browse files Browse the repository at this point in the history
  • Loading branch information
rubys authored Dec 12, 2024
2 parents f37adaf + 90859cf commit e96dd86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions internal/command/launch/launch_frameworks.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e96dd86

Please sign in to comment.