fix: gen-migrations workflow
Some checks failed
gen-migrations / gen-migrations (push) Failing after 17s
Some checks failed
gen-migrations / gen-migrations (push) Failing after 17s
This commit is contained in:
parent
548f60b801
commit
55fca68b06
@ -39,5 +39,5 @@ jobs:
|
||||
git push
|
||||
fi
|
||||
env:
|
||||
DOCKER_NETWORK_HOST: 'host.docker.internal'
|
||||
DOCKER_NETWORK_HOST: 'localhost'
|
||||
DOCKER_HOST: 'unix:///run/user/1001/docker.sock' # HACK: rootless docker on gitea action runner
|
||||
|
@ -1,21 +1,16 @@
|
||||
version: "3"
|
||||
name: "dnim_db"
|
||||
version: '3'
|
||||
name: 'dnim_db'
|
||||
services:
|
||||
base:
|
||||
container_name: "base"
|
||||
image: "postgres:15.3-bullseye"
|
||||
expose: ['5432']
|
||||
ports:
|
||||
- "5432:5432"
|
||||
env_file:
|
||||
- "./.env.schema"
|
||||
container_name: 'base'
|
||||
network_mode: 'host'
|
||||
image: 'postgres:15.3-bullseye'
|
||||
env_file: ['./.env.schema']
|
||||
command: '-h localhost -p 5432'
|
||||
head:
|
||||
container_name: "head"
|
||||
image: "postgres:15.3-bullseye"
|
||||
restart: "always"
|
||||
expose: ['5433']
|
||||
ports:
|
||||
- "5433:5433"
|
||||
command: '-p 5433'
|
||||
env_file:
|
||||
- "./.env.schema"
|
||||
container_name: 'head'
|
||||
network_mode: 'host'
|
||||
image: 'postgres:15.3-bullseye'
|
||||
restart: 'always'
|
||||
env_file: ['./.env.schema']
|
||||
command: '-h localhost -p 5433'
|
||||
|
Loading…
Reference in New Issue
Block a user