Commit 935acc08 by Joel Barciauskas

Quiet docker-compose up

parent 2273faf3
name=$1
port=$2
docker-compose up -d $name
docker-compose up -d $name 2>/dev/null
echo -e "${GREEN}Installing requirements for ${name}...${NC}"
docker exec -t edx.devstack.${name} bash -c 'source /edx/app/$1/$1_env && cd /edx/app/$1/$1/ && make requirements' -- "$name"
......
......@@ -3,7 +3,7 @@
./load-db.sh edxapp_csmh
# Bring the rest of the services online
docker-compose up -d lms
docker-compose up -d lms 2>/dev/null
# Run edxapp migrations first since they are needed for the service users and OAuth clients
docker exec -t edx.devstack.lms bash -c 'source /edx/app/edxapp/edxapp_env && cd /edx/app/edxapp/edx-platform && paver install_prereqs'
......
......@@ -18,7 +18,7 @@ YELLOW='\033[0;33m'
NC='\033[0m' # No Color
# Bring the databases online.
docker-compose up -d mysql mongo
docker-compose up -d mysql mongo 2>/dev/null
# Ensure the MySQL server is online and usable
echo "Waiting for MySQL"
......@@ -41,7 +41,7 @@ docker exec -i edx.devstack.mongo mongo < mongo-provision.js
./provision-lms.sh
# Nothing special needed for studio
docker-compose up -d studio
docker-compose up -d studio 2>/dev/null
./provision-ecommerce.sh
#./provision-discovery.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment