Try to use container image from DockerHub
This commit is contained in:
Родитель
c1e764be29
Коммит
6978fd6916
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче