mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
package compose
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/utils/cmd"
|
|
)
|
|
|
|
func Pull(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s pull", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Up(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s up -d", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Down(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s down --remove-orphans", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Start(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s start", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Stop(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s stop", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Restart(filePath string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s restart", filePath)
|
|
return stdout, err
|
|
}
|
|
|
|
func Operate(filePath, operation string) (string, error) {
|
|
stdout, err := cmd.Execf("docker-compose -f %s %s", filePath, operation)
|
|
return stdout, err
|
|
}
|