Docker commands in practice
https://www.libe.net/docker-commandsDocker containers can be started, updated and managed using terminal commands. In the post I note commands that I have needed so far for Docker and corresponding examples: Create network docker network create smart-home A network can combine several containers that are to communicate with each other. Start container as an example Conbee
docker network - Docker Documentation
docs.docker.com › engine › referenceCommand: Description: docker network connect: Connect a container to a network: docker network create: Create a network: docker network disconnect: Disconnect a container from a network: docker network inspect: Display detailed information on one or more networks: docker network ls: List networks: docker network prune: Remove all unused networks: docker network rm