mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-22 12:48:25 +00:00
Added a human readable name to created user added last updated task time and name, added is_review on the workflow which is triggered by a swimlane with a name present. Notably - it does NOT update or change any of the performance concerns that we were having with this.
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:
|
|
- 5003:5432
|
|
environment:
|
|
- POSTGRES_USER=${DB_USER}
|
|
- POSTGRES_PASSWORD=${DB_PASS}
|
|
- POSTGRES_MULTIPLE_DATABASES=crc_dev,crc_test,pb,pb_test
|