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:36:10 -05:00
parent 548f60b801
commit 55fca68b06
Signed by untrusted user who does not match committer: orion
GPG Key ID: 6D4165AE4C928719
2 changed files with 14 additions and 19 deletions

View File

@ -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

View File

@ -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'