db/docker-compose.yml

23 lines
457 B
YAML
Raw Normal View History

2023-06-08 20:44:06 +00:00
version: "3"
name: "dnim_db"
services:
base:
container_name: "base"
image: "postgres:15.3-bullseye"
ports:
- "5433:5432"
volumes:
- "./data/base:/var/lib/postgres/data"
env_file:
- "./.env.schema"
2023-06-08 20:44:06 +00:00
head:
container_name: "head"
image: "postgres:15.3-bullseye"
restart: "always"
ports:
- "5432:5432"
volumes:
- "./data/head:/var/lib/postgres/data"
env_file:
- "./.env.schema"