db/docker-compose.yml
Orion Kindel 9c0ff0e90a
Some checks failed
gen-migrations / gen-migrations (push) Failing after 16s
fix: gen-migrations workflow
2023-07-18 22:33:06 -05:00

19 lines
361 B
YAML

version: "3"
name: "dnim_db"
services:
base:
container_name: "base"
image: "postgres:15.3-bullseye"
ports:
- "127.0.0.1:5432:5432"
env_file:
- "./.env.schema"
head:
container_name: "head"
image: "postgres:15.3-bullseye"
restart: "always"
ports:
- "127.0.0.1:5433:5432"
env_file:
- "./.env.schema"