diff --git a/docs/solutions/postgis-deploy.md b/docs/solutions/postgis-deploy.md
index aff1f0555..fa4a4f10d 100644
--- a/docs/solutions/postgis-deploy.md
+++ b/docs/solutions/postgis-deploy.md
@@ -64,6 +64,14 @@ The following document provides guidelines how to install PostGIS and how to run
FROM pg_available_extensions WHERE name LIKE 'postgis%' or name LIKE 'address%';
```
+<<<<<<< HEAD
+=======
+=== ":octicons-download-16: From tarballs"
+
+ PostGIS is included into binary tarball and is a part of the `percona-postgresql{{pgversion}}` binary. Use the [install from tarballs](../tarball/.md) tutorial to install it.
+
+
+>>>>>>> 4059fe1b... PG-1300 Added PostGIS from tarballs
## Enable PostGIS extension
1. Create a database and a schema for this database to store your data. A schema is a container that logically segments objects (tables, functions, views, and so on) for better management. Run the following commands from the `psql` terminal:
diff --git a/docs/tarball.md b/docs/tarball.md
index 009878094..4c35f0f6b 100644
--- a/docs/tarball.md
+++ b/docs/tarball.md
@@ -19,7 +19,11 @@ The tarballs include the following components:
| Component | Description |
|-----------|-------------|
+<<<<<<< HEAD
| percona-postgresql{{pgversion}}| The latest version of PostgreSQL server and the following extensions:
- `pgaudit`
- `pgAudit_set_user`
- `pg_repack`
- `pg_stat_monitor`
- `pg_gather`
- `wal2json`
- `pgvector`
- the set of [contrib extensions](contrib.md)|
+=======
+| percona-postgresql{{pgversion}}| The latest version of PostgreSQL server and the following extensions:
- `pgaudit`
- `pgAudit_set_user`
- `pg_repack`
- `pg_stat_monitor`
- `pg_gather`
- `wal2json`
- `postGIS`
- the set of [contrib extensions](contrib.md)|
+>>>>>>> 4059fe1b... PG-1300 Added PostGIS from tarballs
| percona-haproxy | A high-availability solution and load-balancing solution |
| percona-patroni | A high-availability solution for PostgreSQL |
| percona-pgbackrest| A backup and restore tool |
@@ -148,7 +152,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
12. Connect to `psql`
```{.bash data-prompt="$"}
- $ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql
+ $ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql -d postgres
```
??? example "Sample output"
@@ -160,7 +164,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
postgres=#
```
-### Start the components
+## Start the components
After you unpacked the tarball and added the location of the components' binaries to the `$PATH` variable, the components are available for use. You can invoke a component by running its command-line tool.