Skip to content

Commit

Permalink
Merge pull request #289 from paulholden/fix-docs
Browse files Browse the repository at this point in the history
Fix docs related to loading custom Docker configuration file.
  • Loading branch information
stronk7 authored Apr 22, 2024
2 parents 8fae5fa + 9861fbb commit 86c7f2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ to load test-specific configuration:
```
// Load moodle-docker config file if we are in moodle-docker environment
if (getenv('MOODLE_DOCKER_RUNNING')) {
require_once($CFG->dirroot . '/config.docker-template.php');
require_once(__DIR__ . '/config.docker-template.php');
}
require_once($CFG->dirroot . '/lib/setup.php'); // Do not edit.
require_once(__DIR__ . '/lib/setup.php'); // Do not edit.
```

## Local customisations
Expand Down

0 comments on commit 86c7f2c

Please sign in to comment.