db/docker-compose.yml
Orion Kindel 548f60b801
Some checks failed
gen-migrations / gen-migrations (push) Failing after 17s
fix: gen-migrations workflow
2023-07-19 18:30:29 -05:00

22 lines
406 B
YAML

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