-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathstop.go
53 lines (47 loc) · 1.7 KB
/
stop.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package stop
import (
"context"
_ "embed"
"fmt"
"io"
"github.com/docker/docker/api/types/volume"
"github.com/spf13/afero"
"github.com/supabase/cli/internal/utils"
"github.com/supabase/cli/internal/utils/flags"
)
func Run(ctx context.Context, backup bool, projectId string, all bool, fsys afero.Fs) error {
var searchProjectIdFilter string
if !all {
// Sanity checks.
if len(projectId) > 0 {
utils.Config.ProjectId = projectId
} else if err := flags.LoadConfig(fsys); err != nil {
return err
}
searchProjectIdFilter = utils.Config.ProjectId
}
// Stop all services
if err := utils.RunProgram(ctx, func(p utils.Program, ctx context.Context) error {
w := utils.StatusWriter{Program: p}
return stop(ctx, backup, w, searchProjectIdFilter)
}); err != nil {
return err
}
fmt.Println("Stopped " + utils.Aqua("supabase") + " local development setup.")
if resp, err := utils.Docker.VolumeList(ctx, volume.ListOptions{
Filters: utils.CliProjectFilter(searchProjectIdFilter),
}); err == nil && len(resp.Volumes) > 0 {
if len(searchProjectIdFilter) > 0 {
listVolume := fmt.Sprintf("docker volume ls --filter label=%s=%s", utils.CliProjectLabel, searchProjectIdFilter)
utils.CmdSuggestion = "Local data are backed up to docker volume. Use docker to show them: " + utils.Aqua(listVolume)
} else {
listVolume := fmt.Sprintf("docker volume ls --filter label=%s", utils.CliProjectLabel)
utils.CmdSuggestion = "Local data are backed up to docker volume. Use docker to show them: " + utils.Aqua(listVolume)
}
}
return nil
}
func stop(ctx context.Context, backup bool, w io.Writer, projectId string) error {
utils.NoBackupVolume = !backup
return utils.DockerRemoveAll(ctx, w, projectId)
}