db/docker-compose.yml
Orion Kindel 1652073115
Some checks failed
gen-migrations / gen-migrations (push) Failing after 18s
fix: gen-migrations workflow
2023-07-19 18:23:03 -05:00

19 lines
341 B
YAML

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