From 39c2d42a0e94841be994ea58d9666977344064e1 Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Fri, 7 May 2021 01:41:47 -0300 Subject: [PATCH] Remove advertisement for `docker compose` from up Signed-off-by: Ulysses Souza --- compose/cli/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/compose/cli/main.py b/compose/cli/main.py index ac00e530d..fabd6087b 100644 --- a/compose/cli/main.py +++ b/compose/cli/main.py @@ -1144,9 +1144,6 @@ class TopLevelCommand: attach_dependencies = options.get('--attach-dependencies') keep_prefix = not options.get('--no-log-prefix') - if not IS_LINUX_PLATFORM: - print('Docker Compose is now in the Docker CLI, try `docker compose up`\n') - if detached and (cascade_stop or exit_value_from or attach_dependencies): raise UserError( "-d cannot be combined with --abort-on-container-exit or --attach-dependencies.")