services/magefiles/shutdown.go
Dan Anglin 8172a6b64d
feat(mage): shutdown an environment
Add a mage target for shutting down an entire environment.
2023-08-28 15:23:12 +01:00

29 lines
509 B
Go

package main
import (
"fmt"
"os"
"github.com/magefile/mage/sh"
)
func Shutdown(environment 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),
"down",
}
return sh.Run(command[0], command[1:]...)
}