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

This commit is contained in:
Orion Kindel 2023-07-19 18:30:29 -05:00
parent 1652073115
commit 548f60b801
Signed by untrusted user who does not match committer: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -4,6 +4,7 @@ services:
base:
container_name: "base"
image: "postgres:15.3-bullseye"
expose: ['5432']
ports:
- "5432:5432"
env_file:
@ -12,7 +13,9 @@ services:
container_name: "head"
image: "postgres:15.3-bullseye"
restart: "always"
expose: ['5433']
ports:
- "5433:5432"
- "5433:5433"
command: '-p 5433'
env_file:
- "./.env.schema"