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:
|
2023-07-02 20:57:28 +00:00
|
|
|
- "./data/base:/var/lib/postgresql/data"
|
2023-06-08 20:44:06 +00:00
|
|
|
env_file:
|
2023-06-11 21:43:53 +00:00
|
|
|
- "./.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:
|
2023-07-02 20:57:28 +00:00
|
|
|
- "./data/head:/var/lib/postgresql/data"
|
2023-06-08 20:44:06 +00:00
|
|
|
env_file:
|
2023-06-11 21:43:53 +00:00
|
|
|
- "./.env.schema"
|