1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

Fix env var name in scripts/docker-postgres.sh

This commit is contained in:
Jari Bakken 2014-12-12 16:36:31 +01:00
parent 31283a4153
commit f0517107d5

View File

@ -1,10 +1,10 @@
#!/bin/bash
export POSTGRES_PASSWORD="uleash"
export DATABASE_URL=postgres://postgres:unleash@127.0.0.1:15432/postgres
export TEST_DATABASE_URL=postgres://postgres:unleash@127.0.0.1:15432/postgres
HASH=`docker run -p 127.0.0.1:15432:5432 --name unleash-postgres -e POSTGRES_PASSWORD=$POSTGRES_PASSWORD -d postgres:9.3`
npm install
./node_modules/.bin/db-migrate up
DATABASE_URL=$TEST_DATABASE_URL ./node_modules/.bin/db-migrate up
npm test
docker stop $HASH
docker rm $HASH