Skip to content

Commit d0ea5da

Browse files
committed
Integrate/PostgreSQL: Implement suggestions by CodeRabbit
1 parent f75d457 commit d0ea5da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/integrate/postgresql/tutorial.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker network create cratedb-demo
2020
Start CrateDB.
2121
```shell
2222
docker run --rm --name=cratedb --network=cratedb-demo \
23-
--publish=4200:4200 --publish=5432:5432 --env=CRATE_HEAP_SIZE=2g \
23+
--publish=4200:4200 --publish=5432:5432 \
2424
docker.io/crate -Cdiscovery.type=single-node
2525
```
2626

@@ -34,6 +34,10 @@ docker run --rm --name=postgresql --network=cratedb-demo \
3434
Because CrateDB is configured to listen on port `5432` with its PostgreSQL
3535
interface, let's use a different port for PostgreSQL itself.
3636
:::
37+
:::{note}
38+
Using `POSTGRES_HOST_AUTH_METHOD=trust` disables password checks.
39+
Use it for local demos only.
40+
:::
3741

3842
Prepare shortcuts for the CrateDB shell, CrateDB Toolkit, and the PostgreSQL client
3943
programs.

0 commit comments

Comments
 (0)