Files
fn_registry/functions/infra/docker_stop_container.md
T
egutierrez 0402e0fdbe feat: 10 funciones infra Docker y 2 tipos — operaciones de contenedores e imagenes
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.
2026-03-28 03:58:43 +01:00

31 lines
708 B
Markdown

---
name: docker_stop_container
kind: function
lang: go
domain: infra
version: "1.0.0"
purity: impure
signature: "func DockerStopContainer(nameOrID string, timeoutSecs int) error"
description: "Detiene un contenedor Docker en ejecución. timeoutSecs controla el tiempo de gracia antes de SIGKILL (0 usa el default de Docker)."
tags: [docker, container, stop, infra]
uses_functions: []
uses_types: []
returns: []
returns_optional: false
error_type: "error_go_core"
imports: [fmt, os/exec, strconv, strings]
tested: false
tests: []
test_file_path: ""
file_path: "functions/infra/docker_stop_container.go"
---
## Ejemplo
```go
err := DockerStopContainer("my-app", 10)
if err != nil {
log.Fatal(err)
}
```