cr-connect-workflow/postgres/docker-compose.yml
Dan 15c64c862e Adding an argument to update task that will allow it to complete all remaining tasks through an "update_all" flag,
this will allow us to remove some fairly complex logic from the front end that isn't behaving properly.
2021-03-12 20:41:07 -05:00

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