We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d91e77a + 55df7ca commit 805477cCopy full SHA for 805477c
files/startmain.sh
@@ -71,7 +71,10 @@ echo "Starting supervisord..."
71
# Create default container
72
if [ ! -z "${SWIFT_DEFAULT_CONTAINER}" ]; then
73
echo "Creating default container..."
74
- swift -A http://localhost:8080/auth/v1.0 -U test:tester -K testing post ${SWIFT_DEFAULT_CONTAINER}
+ for container in ${SWIFT_DEFAULT_CONTAINER} ; do
75
+ echo "Creating container...${container}"
76
+ swift -A http://localhost:8080/auth/v1.0 -U admin:admin -K admin post ${container}
77
+ done
78
fi
79
80
# Create meta-url-key to allow temp download url generation
0 commit comments