8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68ff8a commit 3393689Copy full SHA for 3393689
package.json
@@ -25,7 +25,7 @@
25
"pkg": "run-s clean build:server && pkg --out-path bin .pkg.config.json",
26
"test": "run-s db:clean db:run test:run db:clean",
27
"db:clean": "cd test/db && docker-compose down",
28
- "db:run": "cd test/db && docker-compose up --detach && sleep 5",
+ "db:run": "cd test/db && docker-compose up --detach",
29
"test:run": "jest --runInBand"
30
},
31
"engines": {
test/db/docker-compose.yml
@@ -1,9 +1,10 @@
1
services:
2
db:
3
- image: postgres:13
+ image: supabase/postgres:14.1.0
4
ports:
5
- 5432:5432
6
volumes:
7
- .:/docker-entrypoint-initdb.d
8
environment:
9
POSTGRES_PASSWORD: postgres
10
+ command: postgres -c config_file=/etc/postgresql/postgresql.conf
0 commit comments