db/docker-compose.yml
Orion Kindel e8e69d4790
Some checks failed
gen-migrations / gen-migrations (push) Failing after 1m10s
fix: gen-migrations workflow
2023-07-19 18:37:46 -05:00

17 lines
363 B
YAML

version: '3'
name: 'dnim_db'
services:
base:
container_name: 'base'
network_mode: 'host'
image: 'postgres:15.3-bullseye'
env_file: ['./.env.schema']
command: '-p 5432'
head:
container_name: 'head'
network_mode: 'host'
image: 'postgres:15.3-bullseye'
restart: 'always'
env_file: ['./.env.schema']
command: '-p 5433'