Created
November 12, 2013 13:06
-
-
Save chilicat/7430486 to your computer and use it in GitHub Desktop.
Simple script to start the openstack docker registry
This file contains 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
#!/bin/sh | |
source ./keystone_adminrc | |
echo ${OS_USERNAME} | |
echo ${OS_PASSWORD} | |
docker run -d -p 5042:5000 \ | |
-e SETTINGS_FLAVOR=openstack \ | |
-e OS_USERNAME=${OS_USERNAME} \ | |
-e OS_PASSWORD=${OS_PASSWORD} \ | |
-e OS_TENANT_NAME=${OS_TENANT_NAME} \ | |
-e OS_GLANCE_URL="http://10.129.184.9:9292" \ | |
-e OS_AUTH_URL=${OS_AUTH_URL} \ | |
docker-registry ./docker-registry/run.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment