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
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