From e4d523cb5bec9146410a501c41732d657977f3ed Mon Sep 17 00:00:00 2001 From: Yuji Ito Date: Tue, 18 Oct 2022 04:10:54 +0000 Subject: [PATCH] Specify PostgreSQL v14 to avoid permission errors. PostgreSQL v15 has a notable change that revokes the CREATE permission from users except a database owner. So we can not execute paddles using it. As a workaround, I specify PostgreSQL version. ref: https://www.postgresql.org/about/news/postgresql-15-released-2526/ Signed-off-by: Yuji Ito --- docs/docker-compose/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docker-compose/docker-compose.yml b/docs/docker-compose/docker-compose.yml index 4276fc456c..f64d17a546 100644 --- a/docs/docker-compose/docker-compose.yml +++ b/docs/docker-compose/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: postgres: - image: postgres:latest + image: postgres:14 healthcheck: test: [ "CMD", "pg_isready", "-q", "-d", "paddles", "-U", "admin" ] timeout: 5s -- 2.39.5