| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- Copyright 2020 Docker Compose CLI authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package compose
- import (
- "context"
- "fmt"
- "strings"
- "github.com/docker/compose/v2/pkg/api"
- "github.com/docker/compose/v2/pkg/progress"
- "github.com/docker/docker/api/types/container"
- )
- func (s *composeService) Commit(ctx context.Context, projectName string, options api.CommitOptions) error {
- return progress.RunWithTitle(ctx, func(ctx context.Context) error {
- return s.commit(ctx, projectName, options)
- }, s.stdinfo(), "Committing")
- }
- func (s *composeService) commit(ctx context.Context, projectName string, options api.CommitOptions) error {
- projectName = strings.ToLower(projectName)
- ctr, err := s.getSpecifiedContainer(ctx, projectName, oneOffInclude, false, options.Service, options.Index)
- if err != nil {
- return err
- }
- clnt := s.dockerCli.Client()
- w := progress.ContextWriter(ctx)
- name := getCanonicalContainerName(ctr)
- msg := fmt.Sprintf("Commit %s", name)
- w.Event(progress.Event{
- ID: name,
- Text: msg,
- Status: progress.Working,
- StatusText: "Committing",
- })
- if s.dryRun {
- w.Event(progress.Event{
- ID: name,
- Text: msg,
- Status: progress.Done,
- StatusText: "Committed",
- })
- return nil
- }
- response, err := clnt.ContainerCommit(ctx, ctr.ID, container.CommitOptions{
- Reference: options.Reference,
- Comment: options.Comment,
- Author: options.Author,
- Changes: options.Changes.GetSlice(),
- Pause: options.Pause,
- })
- if err != nil {
- return err
- }
- w.Event(progress.Event{
- ID: name,
- Text: msg,
- Status: progress.Done,
- StatusText: fmt.Sprintf("Committed as %s", response.ID),
- })
- return nil
- }
|