79a2a21c5e
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>
590 B
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. |
|
false | error_go_core |
|
false | functions/infra/docker_remove_network.go |
Ejemplo
err := DockerRemoveNetwork("my-app-net")
if err != nil {
log.Fatal(err)
}