0

With docker I can specify a specific config to use by doing docker --config /var/vcap/store run ***

How I can I do the same thing with docker-compose so that I can specify a .docker directory that contains my config?

Breedly
  • 230
  • 2
  • 8

1 Answers1

0

Using the DOCKER_CONFIG environment variable you can specify the location of your configuration.

https://docs.docker.com/engine/reference/commandline/cli/#description

Breedly
  • 230
  • 2
  • 8