From e362f0e8a2b914341bca710d76306076365e2b30 Mon Sep 17 00:00:00 2001 From: Stefan Negru Date: Thu, 21 Oct 2021 12:49:11 +0300 Subject: [PATCH] fix typo postgresql docker command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48377215..7fc1b721 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ It is recommended to start PostgreSQL using [Docker](https://www.docker.com/): ```shell docker run -e POSTGRES_USER=beacon \ -e POSTGRES_PASSWORD=beacon \ - -v "$PWD/data":/docker-entrypoint-initdb.d + -v "$PWD/data":/docker-entrypoint-initdb.d \ -e POSTGRES_DB=beacondb \ -p 5432:5432 postgres:11.6 ```