Files
fn_registry/functions/infra/docker_remove_network.md
T
egutierrez 79a2a21c5e feat: docker_create_network y docker_remove_network en infra
Funciones para crear y eliminar redes Docker. DockerCreateNetwork
usa bridge como driver por defecto. Necesarias para pipelines que
orquestan múltiples contenedores en red compartida.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 17:13:45 +01:00

590 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_remove_network function go infra 1.0.0 impure func DockerRemoveNetwork(nameOrID string) error Elimina una red Docker por nombre o ID.
docker
network
remove
infra
false error_go_core
fmt
os/exec
strings
false
functions/infra/docker_remove_network.go

Ejemplo

err := DockerRemoveNetwork("my-app-net")
if err != nil {
    log.Fatal(err)
}