#!/bin/bash set -e PASSWORD="$(relation-get password)"USER="$(relation-get user)"DBNAME="$(relation-get dbname)" config-add "\services: $MASTER_BASE_SERVICE_NAME: environment: DATABASE_URL: \"postgres://$USER:$PASSWORD@$TARGET_SERVICE_NAME/$DBNAME\"" info "Configured $SERVICE_NAME code for $TARGET_SERVICE_NAME access."
#!/bin/bash
set -e
PASSWORD="$(relation-get password)"
USER="$(relation-get user)"
DBNAME="$(relation-get dbname)"
config-add "\
services:
$MASTER_BASE_SERVICE_NAME:
environment:
DATABASE_URL: \"postgres://$USER:$PASSWORD@$TARGET_SERVICE_NAME/$DBNAME\"
"
info "Configured $SERVICE_NAME code for $TARGET_SERVICE_NAME access."