fix: gen-migrations
Some checks failed
gen-migrations / gen-migrations (push) Failing after 25s

This commit is contained in:
Orion Kindel 2023-07-20 13:13:02 -05:00
parent 032c1f7a74
commit 3c7189c657
Signed by untrusted user who does not match committer: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -9,7 +9,7 @@ services:
volumes: ['/var/run/postgresql:/var/run/postgresql']
command: '-p 5432'
healthcheck:
test: [ "CMD-SHELL", "pg_isready" ]
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
interval: 1s
timeout: 1s
retries: 30
@ -22,7 +22,7 @@ services:
volumes: ['/var/run/postgresql:/var/run/postgresql']
command: '-p 5433'
healthcheck:
test: [ "CMD-SHELL", "pg_isready -p 5433" ]
test: [ "CMD-SHELL", "pg_isready -U postgres -p 5433" ]
interval: 1s
timeout: 1s
retries: 30