From 70d03a93abb76ae164a5e56c5f6b4cd55678a56a Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sun, 19 May 2024 10:58:06 +0200 Subject: [PATCH] docker: refine networking notes --- docs/containers/docker.md | 51 +++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/docs/containers/docker.md b/docs/containers/docker.md index f738a75..5886ab0 100644 --- a/docs/containers/docker.md +++ b/docs/containers/docker.md @@ -63,7 +63,7 @@ VMs incur a lot of overhead beyond what is being consumed by your application lo ### [`docker run`](https://docs.docker.com/engine/reference/commandline/run/) -```sh linenums="1" +```sh docker run # run selected app inside a container (downloaded from Docker Hub if missing from image) docker run -d|--detach # run docker container in the background (does not occupy stdout & stderr) docker run -i|--interactive # run docker container in interactive mode (read stdin) @@ -80,7 +80,7 @@ docker run --name= # set container name ### [`docker container`](https://docs.docker.com/engine/reference/commandline/container/) -```sh linenums="1" +```sh docker container ls # list of currently running containers docker container ls -a|--all # list of all containers, running and exited docker container rm # remove one or more containers @@ -97,7 +97,7 @@ docker container exec # exec a command inside a container ### [`docker image`](https://docs.docker.com/engine/reference/commandline/image/) -```sh linenums="1" +```sh docker image ls # list of existing images docker image rm # remove one or more images docker image prune # remove unused images @@ -106,20 +106,20 @@ docker image pull # download an image w/o starting the container ### [`docker build`](https://docs.docker.com/engine/reference/commandline/build/) -```sh linenums="1" +```sh docker build -t -f # build image with specific tag (usually user/app:version) docker build -t -f --build-arg ARG=value # pass args to ARG steps ``` ### [`docker push`](https://docs.docker.com/engine/reference/commandline/push/) -```sh linenums="1" +```sh docker push # publish image to registry (defaults to Docker Hub) ``` ## [Dockerfile](https://docs.docker.com/engine/reference/builder/) -```docker linenums="1" +```dockerfile # starting image or scratch FROM : @@ -160,7 +160,7 @@ With multi-stage builds, it's possible to use multiple `FROM` statements in the It's possible to selectively copy artifacts from one stage to another, leaving behind everything not wanted in the final image. -```docker linenums="1" +```dockerfile FROM : AS RUN # install external dependencies (apt get ...) @@ -186,7 +186,7 @@ COPY --from= CMD ["executable"] # run app ``` -```docker linenums="1" +```dockerfile FROM mcr.microsoft.com/dotnet/: AS runtime RUN # install external dependencies (apt get ...) @@ -219,28 +219,28 @@ ENTRYPOINT ["dotnet", ".dll"] Starting container networks: `bridge` (default), `none`, `host`. -```sh linenums="1" +```sh docker run --network=none/host # specify a non-default network to be used +docker run --add-host=: # add hostname mapping docker network ls # list all available networks ``` -Bridge: Private internal network created by Docker. All containers ara attached to this network by default and get an IP in the `[172.17.xxx.xxx](http://172.12.xxx.xxx)` series. -Containers can access each other by using the IP `172.17.0.1`. It is possible to create multiple sub-networks in the bridge network to isolate groups of containers from each other. +- **Bridge**: Private internal network created by Docker. + All containers ara attached to this network by default and get an IP in the `172.17.xxx.xxx-172.12.xxx.xxx` series. + Containers can access each other by using the IP `172.17.0.1`. + It is possible to create multiple sub-networks in the bridge network to isolate groups of containers from each other. +- **Host**: Removes any network isolation between the host and the containers. Cannot run multiple containers on the same port. +- **None**: Containers are not attached to a network and cannot access other containers or the external network. -Host: Removes any network isolation between the host and the containers. Cannot run multiple containers on the same port. +> **Note**: Mapping `host-gateway` to an hostname allows the container to reach the host network even with networks types different from `host` -None: Containers are not attached to a network and cannot access other containers or the external network. +### User-defined Networks -## User-defined Networks - -```sh linenums="1" -docker network create \ - --driver NETWORK_TYPE \ - --subnet GATEWAY_TP/SUBNET_MASK_SIZE - NETWORK_NAME +```sh +docker network create --driver NETWORK_TYPE --subnet GATEWAY_TP/SUBNET_MASK_SIZE NETWORK_NAME ``` -## Embedded DNS +### Embedded DNS Docker has an internal DNS that allows finding other container by their name instead of their IP. The DNS always runs at the address `127.0.0.11`. @@ -250,7 +250,7 @@ Docker has an internal DNS that allows finding other container by their name ins ## File System -```sh linenums="1" +```sh /var/lib/docker |_ |_containers @@ -270,7 +270,7 @@ To modify a file during while the container runs docker creates a local copy in **volume mounting**: create a volume under the docker installation folder (`/var/lib/docker/volumes/`). **bind mounting**: link docker to an exiting folder to be used as a volume. -```sh linenums="1" +```sh docker run -v : : # older command for bind mounting docker run --mount type=bind, source=:, target= : # modern command for bind mounting ``` @@ -287,7 +287,7 @@ Using Compose is basically a three-step process: 2. Define the services that make up your app in `docker-compose.yml` so they can be run together in an isolated environment. 3. Run `docker-compose up` and Compose starts and runs the entire app. -```yaml linenums="1" +```yaml version: 3.x services: : @@ -302,6 +302,9 @@ services: - ARG= ports: - : + extra_hosts: # add hostname mappings to container network interface config + - : + - :host-gateway # map host machine network networks: # attach container to one or more networks - depends_on: # make sure dependencies are running before this container