diff --git a/docs/src/main/sphinx/installation.rst b/docs/src/main/sphinx/installation.rst
index 458fe7960163..9f516975c54e 100644
--- a/docs/src/main/sphinx/installation.rst
+++ b/docs/src/main/sphinx/installation.rst
@@ -10,6 +10,7 @@ information, in the following sections:
.. toctree::
:maxdepth: 1
+ installation/try-it
installation/deployment
Once you have a completed the deployment, or if you have access to a running
diff --git a/docs/src/main/sphinx/installation/try-it.rst b/docs/src/main/sphinx/installation/try-it.rst
new file mode 100644
index 000000000000..b74e0e3b3d30
--- /dev/null
+++ b/docs/src/main/sphinx/installation/try-it.rst
@@ -0,0 +1,265 @@
+Try Trino with Docker
+======================
+
+This guide focuses on your first ten minutes
+using Trino, and relies on Docker to simplify the installation and
+ensure that the :doc:`CLI ` runs on your platform of choice.
+
+This Docker container includes both the Trino server and the
+Trino command line interface (CLI), which provides a terminal-based,
+interactive shell for running queries and inspecting catalog structures
+in large data clusters. In production, it's unlikely that your server
+and client will reside in the same location. However, to keep this guide
+simple, we're going to run both from your machine.
+
+This guide shows you how to:
+
+- Install and run the Trino CLI
+- Start Trino from the terminal
+
+Prerequisites
+-------------
+
+This quickstart runs the Trino server and Trino CLI from a Docker container,
+which means that you can run this guide from Linux, macOS, or Windows.
+
+Our container encapsulates Trino on Linux for 64-bit Intel platforms. While
+you can evaluate, test, and get started on any of the listed platforms, Trino
+should be run on a Linux host for a production environment.
+
+Visit the following page to install Docker for your operating system.
+
+- `Install Docker `__
+
+Pull Trino from Docker
+------------------------------
+
+After you've installed Docker, pull the Trino container from Docker Hub.
+
+From your terminal, run:
+
+.. code-block:: shell
+
+ docker pull trinodb/trino
+
+Start the Trino server
+----------------------
+
+Start the Trino server with the following command. The Docker container includes connections
+to sample databases whose data you can query throughout this guide.
+
+.. code-block:: shell
+
+ docker run -p 8080:8080 --name trino-container trinodb/trino
+
+Look for the following message in the logs, which tells you the Trino server is ready:
+
+.. code-block:: text
+
+ INFO main io.trino.server.Server ======== SERVER STARTED ========
+
+Start the Trino CLI
+--------------------
+
+In a new terminal window or tab, run the following command to start the Trino CLI:
+
+.. code-block:: shell
+
+ docker exec -it trino-container trino
+
+When the Trino CLI is ready to use, look for:
+
+.. code-block:: shell
+
+ trino>
+
+You can exit the Trino CLI at any time with the following command or Ctrl+D:
+
+.. code-block:: shell
+
+ trino> exit;
+
+How to get help
+~~~~~~~~~~~~~~~
+
+One of the most important things you need to know when learning a new
+tool is where to find help. With Trino, it's as easy as passing
+``help;`` to the CLI.
+
+.. code-block:: shell
+
+ trino> help;
+
+Show configured resources
+~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Now that your server is running and you've started the CLI, let's get a
+list of conigured resources:
+
+.. code-block:: shell
+
+ trino> SHOW CATALOGS;
+
+The Docker image's server is configured with the following catalogs:
+
+.. code-block:: text
+
+ Catalog
+ -----------
+ jmx
+ memory
+ system
+ tpcds
+ tpch
+ (5 rows)
+
+Explore a catalog
+~~~~~~~~~~~~~~~~~
+
+Start with the ``tpch`` catalog, which lets you test the capabilities
+and query syntax of Trino without configuring access to an external data
+source.
+
+.. code-block:: shell
+
+ trino> SHOW SCHEMAS FROM tpch;
+
+Set catalog and schema
+~~~~~~~~~~~~~~~~~~~~~~
+
+To avoid typing the catalog and schema each time, try the ``USE``
+command:
+
+.. code-block:: shell
+
+ trino> USE tpch.sf100;
+
+Now look for:
+
+.. code-block:: shell
+
+ trino:sf100>
+
+Show table data
+~~~~~~~~~~~~~~~
+
+To view the tables in the ``sf100`` schema, run:
+
+.. code-block:: shell
+
+ trino:sf100> SHOW TABLES;
+
+Which returns:
+
+.. code-block:: text
+
+ Table
+ ----------
+ customer
+ lineitem
+ nation
+ orders
+ part
+ partsupp
+ region
+ supplier
+ (8 rows)
+
+Continue to drill down into the ``customer`` table:
+
+.. code-block:: shell
+
+ trino:sf100> SHOW COLUMNS FROM customer;
+
+Which returns:
+
+.. code-block:: text
+
+ Column | Type | Extra | Comment
+ ------------+--------------+-------+---------
+ custkey | bigint | |
+ name | varchar(25) | |
+ address | varchar(40) | |
+ nationkey | bigint | |
+ phone | varchar(15) | |
+ acctbal | double | |
+ mktsegment | varchar(10) | |
+ comment | varchar(117) | |
+ (8 rows)
+
+Run a SQL script
+~~~~~~~~~~~~~~~~
+
+From the Trino prompt you can run SQL queries. Try:
+
+.. code-block:: shell
+
+ trino> SELECT custkey, name, phone, acctbal FROM tpch.sf100.customer LIMIT 7;
+
+Which returns:
+
+.. code-block:: text
+
+ custkey | name | phone | acctbal
+ ---------+--------------------+-----------------+---------
+ 3750001 | Customer#003750001 | 17-219-461-2765 | 3711.02
+ 3750002 | Customer#003750002 | 18-659-357-4460 | -966.64
+ 3750003 | Customer#003750003 | 21-489-373-2061 | 9557.01
+ 3750004 | Customer#003750004 | 29-489-412-3729 | 742.49
+ 3750005 | Customer#003750005 | 28-522-477-1174 | 2915.28
+ 3750006 | Customer#003750006 | 25-234-691-1349 | 1011.81
+ 3750007 | Customer#003750007 | 27-555-235-7461 | 8396.42
+ (7 rows)
+
+Call Trino from terminal
+-------------------------
+
+Using the Trino CLI isn't required. You can call Trino
+directly from your terminal session. Let's look at a few
+examples.
+
+Pass SQL queries to Trino
+~~~~~~~~~~~~~~~~~~~~~~~~~
+
+In the previous section, you learned how to run a SQL query from the
+Trino CLI. You can also pass a query directly to Trino. From
+the terminal, run:
+
+.. code-block:: shell
+
+ docker exec -it trino-container trino --execute 'SELECT custkey, name, phone, acctbal FROM tpch.sf100.customer LIMIT 7'
+
+Which returns:
+
+.. code-block:: text
+
+ custkey | name | phone | acctbal
+ ---------+--------------------+-----------------+---------
+ 3750001 | Customer#003750001 | 17-219-461-2765 | 3711.02
+ 3750002 | Customer#003750002 | 18-659-357-4460 | -966.64
+ 3750003 | Customer#003750003 | 21-489-373-2061 | 9557.01
+ 3750004 | Customer#003750004 | 29-489-412-3729 | 742.49
+ 3750005 | Customer#003750005 | 28-522-477-1174 | 2915.28
+ 3750006 | Customer#003750006 | 25-234-691-1349 | 1011.81
+ 3750007 | Customer#003750007 | 27-555-235-7461 | 8396.42
+ (7 rows)
+
+Run SQL scripts with Trino
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Two TPCH scripts are included with the sample files for the `O’Reilly
+book Trino: The Definitive
+Guide `__.
+
+To use these scripts, download the book’s samples from their `GitHub
+location `__
+either as a zip file or a git clone.
+
+.. code-block:: shell
+
+ docker exec -it trino-container trino -f filename.sql
+
+Next steps
+----------
+
+Learn more about deployment options, see :doc:`Deploying Trino `.
\ No newline at end of file