aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-09-14 16:44:00 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2020-09-14 20:09:56 +0000
commit4a2ecaf2e48e48cf5309b1877817ed6a1ffff64c (patch)
tree276d2d403cd8f02bc71f3358669452db8d2979bd /doc
parent018194f4a832b406999762fdac3417dfbcb9b9cb (diff)
doc: Update info about docker containers
This amends 018194f4a Change-Id: I2157d6697e6dfb30f72da624bb047c7650263aad Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/qbs.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/qbs.qdoc b/doc/qbs.qdoc
index abd1b2aad..16468ccc0 100644
--- a/doc/qbs.qdoc
+++ b/doc/qbs.qdoc
@@ -716,18 +716,18 @@
the Docker command line and ensures that the correct image tag is used. All available images
are listed in the \c docker-compose.yml file in the project root directory.
- Run the following command to download the \QBS development image based on Ubuntu 18.04
- \e Bionic:
+ Run the following command to download the \QBS development image based on Ubuntu 20.04
+ \e Focal:
\code
- docker-compose pull bionic
+ docker-compose pull focal
\endcode
You can then create a new container with the \QBS source directory mounted from your host
machine's file system, by running:
\code
- docker-compose run --rm bionic
+ docker-compose run --rm focal
\endcode
You will now be in an interactive Linux shell where you can develop and build \QBS.