db/docker-compose.yml

19 lines
503 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:46:33 +00:00
volumes: ['/var/run/postgresql:/var/run/postgresql']
command: '-h localhost -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:46:33 +00:00
volumes: ['/var/run/postgresql:/var/run/postgresql']
command: '-h localhost -p 5433'