diff --git a/docs/docker/docker.md b/docs/docker/docker.md index 77f3d34..594ea65 100644 --- a/docs/docker/docker.md +++ b/docs/docker/docker.md @@ -247,7 +247,7 @@ None: Containers are not attached to a network and cannot access other container ```bash docker network create \ --driver \ ---subnet / +--subnet / \ ``` @@ -284,13 +284,13 @@ bind mounting: link docker to an exiting folder to be used as a volume. ## Layer Architecture -![All containers created from the same image share the same image layers.](https://docs.docker.com/storage/storagedriver/images/container-layers.jpg) +![container-layers](https://docs.docker.com/storage/storagedriver/images/container-layers.jpg) All containers created from the same image share the same image layers. ```sh docker run -v : : # older command for bind mounting -docker run --mount type=bind, source=:, target= : # moder command for bind mounting +docker run --mount type=bind, source=:, target= : # modern command for bind mounting ``` --- @@ -301,39 +301,43 @@ Compose is a tool for defining and running multi-container Docker applications. Using Compose is basically a three-step process: -1. Define your app’s environment with a `Dockerfile` so it can be reproduced anywhere. +1. Define the app’s environment with a `Dockerfile` so it can be reproduced anywhere. 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 your entire app. +3. Run `docker-compose up` and Compose starts and runs the entire app. ```yaml -# dedicated bridge network for the app (no liks needed, names suffice) -# support for docker swarm version: 3.x services: - : + : + image: + image: build: # path to folder containing a Dockerfile to build the image + build: + context: + dockerfile: <*.Dockerfile> + args: # pass args to dockerfile + ARG: + - ARG= ports: - : networks: # attach container to one or more networks - - - ... depends_on: # make sure dependencies are running before this container - - envoroment: - - ENV_VAR= # declare a env var for this service + environment: # declare a env vars for this service + ENV_VAR: + - ENV_VAR= env_file: - - # resuable env file + - # reusable env file volumes: - "./:" # service-dedicated volume - - ":" # reuse volume - ... + - ":" # reuseable volume # reusable volume definitions volumes: - - : # ? + - : # create networks networks: - : - ... + : ```