how do you manage secret values with docker-compose v3.1?

You can read the corresponding section from the official documentation. To use secrets you need to add two things into your docker-compose.yml file. First, a top-level secrets: block that defines all of the secrets. Then, another secrets: block under each service that specifies which secrets the service should receive. As an example, create the two … Read more