mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-10-31 23:16:46 +01:00
14 lines
312 B
YAML
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'
|