Try to use container image from DockerHub

This commit is contained in:
Brian Telnes 2017-06-29 17:37:01 -07:00
Родитель c1e764be29
Коммит 6978fd6916
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -2,7 +2,8 @@
docker exec -i devstack /bin/bash -s <<EOF
# Ensure that MySql is running. Fixes error "Can't connect to MYSQL server on '127.0.0.1' (111)"
if [! ps -Af | grep mysqld > null ]; then sudo systemctl start mysql.service; fi
RESULT=`ps -Af | grep mysqld`
if [ "${RESULT:-null}" = null ]; then sudo systemctl start mysql.service; fi
sudo su edxapp
cd /edx/app/edxapp
rm -r -d -f themes