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
|
git push
|
||||||
fi
|
fi
|
||||||
env:
|
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
|
DOCKER_HOST: 'unix:///run/user/1001/docker.sock' # HACK: rootless docker on gitea action runner
|
||||||
|
@ -1,21 +1,16 @@
|
|||||||
version: "3"
|
version: '3'
|
||||||
name: "dnim_db"
|
name: 'dnim_db'
|
||||||
services:
|
services:
|
||||||
base:
|
base:
|
||||||
container_name: "base"
|
container_name: 'base'
|
||||||
image: "postgres:15.3-bullseye"
|
network_mode: 'host'
|
||||||
expose: ['5432']
|
image: 'postgres:15.3-bullseye'
|
||||||
ports:
|
env_file: ['./.env.schema']
|
||||||
- "5432:5432"
|
command: '-h localhost -p 5432'
|
||||||
env_file:
|
|
||||||
- "./.env.schema"
|
|
||||||
head:
|
head:
|
||||||
container_name: "head"
|
container_name: 'head'
|
||||||
image: "postgres:15.3-bullseye"
|
network_mode: 'host'
|
||||||
restart: "always"
|
image: 'postgres:15.3-bullseye'
|
||||||
expose: ['5433']
|
restart: 'always'
|
||||||
ports:
|
env_file: ['./.env.schema']
|
||||||
- "5433:5433"
|
command: '-h localhost -p 5433'
|
||||||
command: '-p 5433'
|
|
||||||
env_file:
|
|
||||||
- "./.env.schema"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user