cic-dw/dev/docker-compose.yaml
Mohammed Sohail b7452778d5
project: init
- create dw db structure
- write remote syncer queries
2022-04-25 18:29:38 +03:00

14 lines
312 B
YAML

services:
postgres:
image: postgres:14-alpine
restart: unless-stopped
network_mode: "host"
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=cic_dw
volumes:
- ./dev-data/postgres:/var/lib/postgresql/data
ports:
- '5432:5432'