Last active
August 29, 2015 14:17
-
-
Save dmendiza/e6c5b3f0bc6913d766f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t postgres postgresql/ | |
docker build -t keystone keystone/ | |
docker run -d --name postgres postgres | |
docker run -d -p 5000:5000 -p 35357:35357 --link postgres:db --name keystone keystone | |
sed -i "s/OS_SERVICE_ENDPOINT=.*/OS_SERVICE_ENDPOINT=\"http:\/\/localhost:35357\/v2.0\"/" barbican/scripts/keystone_data.sh | |
./barbican/scripts/keystone_data.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment