You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
351 B
11 lines
351 B
#! /bin/bash
|
|
|
|
curl localhost:5984 2> /dev/null
|
|
while [ $? != 0 ]; do
|
|
curl localhost:5984 2> /dev/null
|
|
sleep 5;
|
|
done
|
|
|
|
curl -XPUT http://$COUCHDB_USER:$COUCHDB_PASSWORD@localhost:5984/$COUCHDB_NAME || true
|
|
curl -XPUT http://$COUCHDB_USER:$COUCHDB_PASSWORD@localhost:5984/$COUCHDB_NAME/_design/blogPosts -d @/blogPosts.json || true
|
|
exec python3 "$@"
|
|
|