Skip to content

Commit f86c84b

Browse files
author
Sameer Naik
committed
readme: updated
1 parent 0c3d1f4 commit f86c84b

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,19 +183,23 @@ docker run --name postgresql -itd \
183183
--env 'DB_NAME=dbname' --env 'DB_UNACCENT=true' \
184184
sameersbn/postgresql:9.4-11
185185
```
186+
186187
*By default the unaccent extension is disabled*
187188

188189
# Enabling PostGIS extension
189190

190-
PostGIS is spatial extension to PostgreSQL.
191+
**Available in versions > `9.4-11`**
192+
193+
PostGIS is a spatial database extender for PostgreSQL object-relational database. It adds support for geographic objects allowing location queries to be run in SQL.
191194

192-
You can enable the PostGIS extension on database(s) by specifying `DB_POSTGIS=true`. For example, the following command enables the unaccent extension for the `dbname` database.
195+
You can enable the PostGIS extension on database(s) by specifying `DB_POSTGIS=true`. For example, the following command enables the PostGIS extension for the `dbname` database.
193196

194197
```bash
195198
docker run --name postgresql -itd \
196199
--env 'DB_NAME=dbname' --env 'DB_POSTGIS=true' \
197200
sameersbn/postgresql:9.4-11
198201
```
202+
199203
*By default the PostGIS extension is disabled*
200204

201205
## Granting user access to a database

0 commit comments

Comments
 (0)