Moodle v4.0 too slow running in Docker-container

Re: Moodle v4.0 too slow running in Docker-container

Shota Megrelishvili - ން
Number of replies: 0
Thank you for the reply!

The issue here is sharing a folder between host and guest environments of Docker.
To solve the issue, the `moodledata` folder should be created as an independent volume via docker-compose.yml.

Thought it could be useful for someone:
docker-compose.yml example
services:
moodle:
....
volumes:
- moodledata:/var/projects/moodle/moodledata
...

volumes:
...
moodledata:
driver: local