feat(mage): add a target to stop services

This commit is contained in:
Dan Anglin 2023-08-28 15:14:36 +01:00
parent 60a52ee66f
commit 5dd6ab8ee6
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

30
magefiles/stop.go Normal file
View file

@ -0,0 +1,30 @@
package main
import (
"fmt"
"os"
"github.com/magefile/mage/sh"
)
func Stop(environment, service string) error {
os.Setenv("MAGEFILE_VERBOSE", "true")
cfg, err := newConfig(environment)
if err != nil {
return fmt.Errorf("unable to load the configuration; %w", err)
}
os.Setenv("DOCKER_HOST", cfg.Docker.Host)
command := []string{
"docker",
"compose",
"--project-directory",
fmt.Sprintf("%s/%s/compose", rootBuildDir, environment),
"stop",
service,
}
return sh.Run(command[0], command[1:]...)
}