mirror of https://github.com/docker/compose.git
Merge pull request #2059 from ndeloof/volumes_from
update project's volumes_from before retrieving service
This commit is contained in:
commit
13dea3cef9
|
@ -127,6 +127,9 @@ func (s *composeService) runInteractive(ctx context.Context, containerID string,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *composeService) prepareRun(ctx context.Context, project *types.Project, opts api.RunOptions) (string, error) {
|
func (s *composeService) prepareRun(ctx context.Context, project *types.Project, opts api.RunOptions) (string, error) {
|
||||||
|
if err := prepareVolumes(project); err != nil { // all dependencies already checked, but might miss service img
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
service, err := project.GetService(opts.Service)
|
service, err := project.GetService(opts.Service)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
@ -146,9 +149,6 @@ func (s *composeService) prepareRun(ctx context.Context, project *types.Project,
|
||||||
}
|
}
|
||||||
service.Labels = service.Labels.Add(api.SlugLabel, slug)
|
service.Labels = service.Labels.Add(api.SlugLabel, slug)
|
||||||
service.Labels = service.Labels.Add(api.OneoffLabel, "True")
|
service.Labels = service.Labels.Add(api.OneoffLabel, "True")
|
||||||
if err := prepareVolumes(project); err != nil { // all dependencies already checked, but might miss service img
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := s.ensureImagesExists(ctx, project, false); err != nil { // all dependencies already checked, but might miss service img
|
if err := s.ensureImagesExists(ctx, project, false); err != nil { // all dependencies already checked, but might miss service img
|
||||||
return "", err
|
return "", err
|
||||||
|
|
Loading…
Reference in New Issue