2020-08-05 16:32:51 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Docker, Inc.
|
|
|
|
|
|
|
|
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"
|
2020-08-17 17:48:52 +02:00
|
|
|
"os"
|
2020-08-05 16:32:51 +02:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2020-09-07 13:23:06 +02:00
|
|
|
"github.com/docker/compose-cli/api/client"
|
2020-08-05 16:32:51 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func logsCommand() *cobra.Command {
|
2020-08-18 09:40:57 +02:00
|
|
|
opts := composeOptions{}
|
2020-08-05 16:32:51 +02:00
|
|
|
logsCmd := &cobra.Command{
|
|
|
|
Use: "logs",
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2020-08-18 09:40:57 +02:00
|
|
|
return runLogs(cmd.Context(), opts)
|
2020-08-05 16:32:51 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
logsCmd.Flags().StringVarP(&opts.Name, "project-name", "p", "", "Project name")
|
2020-08-20 15:18:03 +02:00
|
|
|
logsCmd.Flags().StringVar(&opts.WorkingDir, "workdir", "", "Work dir")
|
2020-08-05 16:32:51 +02:00
|
|
|
logsCmd.Flags().StringArrayVarP(&opts.ConfigPaths, "file", "f", []string{}, "Compose configuration files")
|
|
|
|
|
|
|
|
return logsCmd
|
|
|
|
}
|
|
|
|
|
2020-08-18 09:40:57 +02:00
|
|
|
func runLogs(ctx context.Context, opts composeOptions) error {
|
2020-08-05 16:32:51 +02:00
|
|
|
c, err := client.New(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-20 16:42:37 +02:00
|
|
|
projectName, err := opts.toProjectName()
|
2020-08-18 09:40:57 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-20 16:42:37 +02:00
|
|
|
return c.ComposeService().Logs(ctx, projectName, os.Stdout)
|
2020-08-05 16:32:51 +02:00
|
|
|
}
|