Check Site administration > Server > Task logs
Filter to find the failing tasks. What do the logs say?
Filter to find the failing tasks. What do the logs say?
services:webserver: image: "moodlehq/moodle-php-apache:${PHP_VERSION}" container_name: "${PROJECT_NAME}_webserver" ports: - '${WEBSERVER_PORT}:80' volumes: - ./web:/var/www - ./config/php/php.ini:/usr/local/etc/php/conf.d/my_apache2_php.inimariadb: image: mariadb:latest container_name: "${PROJECT_NAME}_db" environment: MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD MYSQL_DATABASE: $DB_NAME MYSQL_USER: $DB_USER MYSQL_PASSWORD: $DB_PASSWORD volumes: - ./mariadb/:/var/lib/mysql ports: - '${DATABASE_PORT}:3306'redis: image: redis:latest