mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/dokku/dokku/plugins/common"
|
|
)
|
|
|
|
// PurgeCacheFailed wraps error to allow returning the correct exit code
|
|
type PurgeCacheFailed struct {
|
|
exitCode int
|
|
}
|
|
|
|
// ExitCode returns an exit code to use in case this error bubbles
|
|
// up into an os.Exit() call
|
|
func (err *PurgeCacheFailed) ExitCode() int {
|
|
return err.exitCode
|
|
}
|
|
|
|
// Error returns a standard non-existent app error
|
|
func (err *PurgeCacheFailed) Error() string {
|
|
return fmt.Sprintf("failed to purge cache, exit code %d", err.exitCode)
|
|
}
|
|
|
|
// PurgeCache deletes the contents of the build cache stored in the repository
|
|
func PurgeCache(appName string) error {
|
|
containerIDs, _ := common.DockerFilterContainers([]string{
|
|
fmt.Sprintf("label=com.dokku.app-name=%v", appName),
|
|
"label=com.dokku.image-stage=build",
|
|
})
|
|
if len(containerIDs) > 0 {
|
|
common.DockerRemoveContainers(containerIDs)
|
|
}
|
|
result, err := common.CallExecCommand(common.ExecCommandInput{
|
|
Command: common.DockerBin(),
|
|
Args: []string{"volume", "rm", "-f", fmt.Sprintf("cache-%s", appName)},
|
|
StreamStderr: true,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("Unable to remove cache volume: %w", err)
|
|
}
|
|
if result.ExitCode != 0 {
|
|
return &PurgeCacheFailed{result.ExitCode}
|
|
}
|
|
|
|
return nil
|
|
}
|