0402e0fdbe
Funciones Docker: list/start/stop/remove containers, list/pull/remove images, inspect, logs, run. Tipos: ContainerInfo e ImageInfo. Pre-existentes en el dominio infra, ahora registrados.
17 lines
370 B
Go
17 lines
370 B
Go
package infra
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
// DockerStartContainer inicia un contenedor existente por nombre o ID.
|
|
func DockerStartContainer(nameOrID string) error {
|
|
out, err := exec.Command("docker", "start", nameOrID).CombinedOutput()
|
|
if err != nil {
|
|
return fmt.Errorf("docker start %s: %s", nameOrID, strings.TrimSpace(string(out)))
|
|
}
|
|
return nil
|
|
}
|