mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 12:57:52 +00:00
Give mysql more time
On Travis CI, provisioning may fail if mysql hass less than 10s to bootstrap.
This commit is contained in:
parent
560f520af1
commit
9d4743f00e
6
Makefile
6
Makefile
@ -22,11 +22,11 @@ update:
|
|||||||
docker-compose pull
|
docker-compose pull
|
||||||
|
|
||||||
provision:
|
provision:
|
||||||
$(DOCKER_COMPOSE_RUN) lms bash -c "dockerize -wait tcp://mysql:3306 && bash /openedx/config/provision.sh"
|
$(DOCKER_COMPOSE_RUN) lms bash -c "dockerize -wait tcp://mysql:3306 -timeout 20s && bash /openedx/config/provision.sh"
|
||||||
|
|
||||||
migrate-openedx:
|
migrate-openedx:
|
||||||
$(DOCKER_COMPOSE_RUN_OPENEDX) lms bash -c "dockerize -wait tcp://mysql:3306 && ./manage.py lms migrate"
|
$(DOCKER_COMPOSE_RUN_OPENEDX) lms bash -c "dockerize -wait tcp://mysql:3306 -timeout 20s && ./manage.py lms migrate"
|
||||||
$(DOCKER_COMPOSE_RUN_OPENEDX) cms bash -c "dockerize -wait tcp://mysql:3306 && ./manage.py cms migrate"
|
$(DOCKER_COMPOSE_RUN_OPENEDX) cms bash -c "dockerize -wait tcp://mysql:3306 -timeout 20s && ./manage.py cms migrate"
|
||||||
|
|
||||||
migrate-forum:
|
migrate-forum:
|
||||||
$(DOCKER_COMPOSE_RUN) forum bash -c "bundle exec rake search:initialize && \
|
$(DOCKER_COMPOSE_RUN) forum bash -c "bundle exec rake search:initialize && \
|
||||||
|
Loading…
Reference in New Issue
Block a user