db/docker-compose.yml

17 lines
363 B
YAML
Raw Normal View History

2023-07-19 23:36:10 +00:00
version: '3'
name: 'dnim_db'
2023-06-08 20:44:06 +00:00
services:
base:
2023-07-19 23:36:10 +00:00
container_name: 'base'
network_mode: 'host'
image: 'postgres:15.3-bullseye'
env_file: ['./.env.schema']
2023-07-19 23:37:46 +00:00
command: '-p 5432'
2023-06-08 20:44:06 +00:00
head:
2023-07-19 23:36:10 +00:00
container_name: 'head'
network_mode: 'host'
image: 'postgres:15.3-bullseye'
restart: 'always'
env_file: ['./.env.schema']
2023-07-19 23:37:46 +00:00
command: '-p 5433'