mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 21:28:32 +00:00
this will allow us to remove some fairly complex logic from the front end that isn't behaving properly.
13 lines
324 B
YAML
13 lines
324 B
YAML
version: "3.7"
|
|
services:
|
|
db:
|
|
image: sartography/cr-connect-db
|
|
volumes:
|
|
- $HOME/docker/volumes/postgres:/var/lib/postgresql/data
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_USER=${DB_USER}
|
|
- POSTGRES_PASSWORD=${DB_PASS}
|
|
- POSTGRES_MULTIPLE_DATABASES=crc_dev,crc_test,pb,pb_test
|