2023-06-08 20:44:06 +00:00
|
|
|
version: "3"
|
|
|
|
name: "dnim_db"
|
|
|
|
services:
|
|
|
|
base:
|
|
|
|
container_name: "base"
|
|
|
|
image: "postgres:15.3-bullseye"
|
|
|
|
ports:
|
2023-07-19 03:33:06 +00:00
|
|
|
- "127.0.0.1:5432:5432"
|
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:
|
2023-07-19 03:33:06 +00:00
|
|
|
- "127.0.0.1:5433:5432"
|
2023-06-08 20:44:06 +00:00
|
|
|
env_file:
|
2023-06-11 21:43:53 +00:00
|
|
|
- "./.env.schema"
|