summaryrefslogtreecommitdiff
path: root/compose/project.py
diff options
context:
space:
mode:
authorUlysses Souza <ulysses.souza@docker.com>2019-08-30 12:11:09 +0200
committerUlysses Souza <ulysses.souza@docker.com>2019-08-30 12:11:09 +0200
commit5add9192ac52a5c72ecc1495aa68cbfeb5a8e863 (patch)
tree0429f4470979ca0701110fcd56e442c7f778e95f /compose/project.py
parent9d7ad3bac17a174a85f6d9f4e20d04b2e65b8c66 (diff)
Rename envvar switch to COMPOSE_DOCKER_CLI_BUILD
From `COMPOSE_NATIVE_BUILDER` to `COMPOSE_DOCKER_CLI_BUILD` Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
Diffstat (limited to 'compose/project.py')
-rw-r--r--compose/project.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/compose/project.py b/compose/project.py
index c84fa77b..69e273c4 100644
--- a/compose/project.py
+++ b/compose/project.py
@@ -369,10 +369,10 @@ class Project(object):
log.warning("Native build is an experimental feature and could change at any time")
if parallel_build:
log.warning("Flag '--parallel' is ignored when building with "
- "COMPOSE_NATIVE_BUILDER=1")
+ "COMPOSE_DOCKER_CLI_BUILD=1")
if gzip:
log.warning("Flag '--compress' is ignored when building with "
- "COMPOSE_NATIVE_BUILDER=1")
+ "COMPOSE_DOCKER_CLI_BUILD=1")
def build_service(service):
service.build(no_cache, pull, force_rm, memory, build_args, gzip, rm, silent, cli, progress)