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

View File

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