From bb119ca967051b75cc71e7df4318ada72745a813 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Tue, 23 Feb 2021 02:23:29 +0400 Subject: [PATCH] Run docker in interactive mode for colored output and Ctrl+C --- docs/building-cmake.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/building-cmake.md b/docs/building-cmake.md index d39d7bd9f..f518c5dcb 100644 --- a/docs/building-cmake.md +++ b/docs/building-cmake.md @@ -18,7 +18,7 @@ Go to the `tdesktop` directory and run Make sure that you're still in the `tdesktop` directory and run (using [your **api_id** and **api_hash**](#obtain-your-api-credentials)) - docker run --rm \ + docker run --rm -it \ -v $PWD:/usr/src/tdesktop \ tdesktop:centos_env \ /usr/src/tdesktop/Telegram/build/docker/centos_env/build.sh \ @@ -29,7 +29,7 @@ Make sure that you're still in the `tdesktop` directory and run (using [your **a Or, to create a debug build, run (also using [your **api_id** and **api_hash**](#obtain-your-api-credentials)) - docker run --rm \ + docker run --rm -it \ -v $PWD:/usr/src/tdesktop \ -e DEBUG=1 \ tdesktop:centos_env \