Files
fn_registry/functions/infra/docker_inspect_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

896 B

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, tested, tests, test_file_path, file_path
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports tested tests test_file_path file_path
docker_inspect_container function go infra 1.0.0 impure func DockerInspectContainer(nameOrID string) (map[string]any, error) Devuelve los detalles completos de un contenedor Docker como mapa JSON genérico. Útil para inspeccionar configuración, red, volumes, etc.
docker
container
inspect
infra
false error_go_core
encoding/json
fmt
os/exec
false
functions/infra/docker_inspect_container.go

Ejemplo

info, err := DockerInspectContainer("my-app")
if err != nil {
    log.Fatal(err)
}
fmt.Println(info["State"])

Notas

Devuelve map[string]any en vez de un struct tipado para maximizar flexibilidad. El caller puede navegar el JSON libremente.