Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
docker-network Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# docker network
> Create and manage docker networks.
> More information: <https://docs.docker.com/engine/reference/commandline/network/>.
- List all available and configured networks on docker daemon:
`docker network ls`
- Create a user-defined network:
`docker network create --driver {{driver_name}} {{network_name}}`
- Display detailed information about one or more networks:
`docker network inspect {{network_name1 network_name2 ...}}`
- Connect a container to a network using a name or ID:
`docker network connect {{network_name}} {{container_name|ID}}`
- Disconnect a container from a network:
`docker network disconnect {{network_name}} {{container_name|ID}}`
- Remove all unused (not referenced by any container) networks:
`docker network prune`
- Remove one or more unused networks:
`docker network rm {{network_name1 network_name2 ...}}`