From 2e8ba4f3d3860d04fa3a1d613cda1470889f8c29 Mon Sep 17 00:00:00 2001 From: ian zhang Date: Sun, 5 Jun 2022 16:56:59 +0800 Subject: [PATCH] Update docker command for sample poostgresql As the default postgresql version had been upgraded as version 12, the sample command should be updating too, otherwise, we will meet permission issue during first execution. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a769e53a..373d66e2 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ Step 1. Launch a postgresql container docker run --name gitlab-postgresql -d \ --env 'DB_NAME=gitlabhq_production' \ --env 'DB_USER=gitlab' --env 'DB_PASS=password' \ - --env 'DB_EXTENSION=pg_trgm' \ + --env 'DB_EXTENSION=pg_trgm,btree_gist' \ --volume /srv/docker/gitlab/postgresql:/var/lib/postgresql \ sameersbn/postgresql:12-20200524 ```