Several parts of Compose deal with environment variables in some way. This tutorial can help you find the information you need. 1. Replace environment variables in Compose file You can populate values in a Compose file using environment variables from your shell: web: image: "webapp:${TAG}" For more information, see the Variable substitution section in the Compose file manual. 2. Set environment variables in the container You can set environment variables in the service container using the environment keyword, just like using docker run -e VARIABLE=VALUE ...: web: environment: -DEBUG=1 3. Passing environment variables to the container When using web: environment: -DEBUG The value of the DEBUG variable in the container is taken from the variable of the same name in the shell that runs Compose. 4. The “env_file” configuration option You can use the web: env_file: -web-variables.env 5. Set environment variables using 'docker-compose run' Just like docker-compose run -e DEBUG=1 web python console.py You can also pass a variable from the shell instead of assigning it directly: docker-compose run -e DEBUG web python console.py The value of the DEBUG variable in the container is taken from the variable of the same name in the shell that runs Compose. 6. “.env” File You can set default values for any environment variables referenced in a Compose file in an environment file named .env, or used to configure Compose: $ cat .env TAG=v1.5 $ cat docker-compose.yml version: '3' services: web: image: "webapp:${TAG}" When running $ docker-compose config version: '3' services: web: image: 'webapp:v1.5' Values in the shell take precedence over values specified in the $ export TAG=v2.0 $ docker-compose config version: '3' services: web: image: 'webapp:v2.0' When setting the same environment variable in multiple files, here is the precedence Compose uses to choose which value to use:
In the following example, we set the same environment variables in both the Environment file and the Compose file: $ cat ./Docker/api/api.env NODE_ENV=test $ cat docker-compose.yml version: '3' services: API: image: 'node:6-alpine' env_file: - ./Docker/api/api.env environment: - NODE_ENV=production When running a container, environment variables defined in the Compose file take precedence. $ docker-compose exec api node process.env.NODE_ENV 'production' Any
7. Configure Compose using environment variables There are several environment variables that can be used to configure the behavior of the Docker Compose command line. They begin with COMPOSE_ or DOCKER_ and are recorded in the CLI environment variables. 8. Create environment variables through link When using the links option in the first version of the Compose file, environment variables are created for each link. They are documented in the Link environment variable reference. However, these variables have been deprecated. link creates an alias for the host instead. Original URL The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of how to use the canvas operation plugin fabric.js
>>: Share 101 MySQL debugging and optimization tips
EXPLAIN shows how MySQL uses indexes to process s...
Method 1: Using the onclick event <input type=...
Error: Connection to blog0@localhost failed. [080...
Table of contents Basic Configuration Entry file ...
Time always passes surprisingly fast without us n...
Table of contents Create a new user Authorize new...
There are many versions of the Java language. In ...
I had always wanted to learn Kubernetes because i...
1. Download the latest nginx docker image $ docke...
Table of contents Overview Problem Description Ci...
There are many ways to generate a global ID. Here...
This article uses examples to explain the princip...
CUDA installation download cuda Enter the nvidia-...
This article example shares the implementation me...
This article shares the specific code of Vue to r...