summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/create_postgres_user.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create_postgres_user.sh b/scripts/create_postgres_user.sh
index 8a049bcd7fb..0fa065b0387 100644
--- a/scripts/create_postgres_user.sh
+++ b/scripts/create_postgres_user.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-psql -h postgres -U postgres postgres <<EOF
+psql -h localhost -U postgres postgres <<EOF
CREATE USER gitlab;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO gitlab;
EOF