mirror of
https://github.com/docker/compose.git
synced 2025-07-21 12:44:54 +02:00
Rephrase warnings when building with the cli
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
This commit is contained in:
parent
15e8edca3c
commit
ee8ca5d6f8
@ -368,9 +368,11 @@ class Project(object):
|
|||||||
if cli:
|
if cli:
|
||||||
log.warning("Native build is an experimental feature and could change at any time")
|
log.warning("Native build is an experimental feature and could change at any time")
|
||||||
if parallel_build:
|
if parallel_build:
|
||||||
log.warning("unavailable --parallel on COMPOSE_NATIVE_BUILDER=1")
|
log.warning("Flag '--parallel' is ignored when building with "
|
||||||
|
"COMPOSE_NATIVE_BUILDER=1")
|
||||||
if gzip:
|
if gzip:
|
||||||
log.warning("unavailable --compress on COMPOSE_NATIVE_BUILDER=1")
|
log.warning("Flag '--compress' is ignored when building with "
|
||||||
|
"COMPOSE_NATIVE_BUILDER=1")
|
||||||
|
|
||||||
def build_service(service):
|
def build_service(service):
|
||||||
service.build(no_cache, pull, force_rm, memory, build_args, gzip, rm, silent, cli, progress)
|
service.build(no_cache, pull, force_rm, memory, build_args, gzip, rm, silent, cli, progress)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user