Run with Docker - C0D3D3V/Moodle-DL GitHub Wiki
Setup
- Install Git and clone the master branch
- Install Docker
- Open a terminal in the cloned project and execute:
docker build -t md .
- Create a configuration file (
config.json
) in a folder where you want to download your Moodle, use the wiki for this - Open a terminal in this folder and execute:
docker run --rm -it --net=host -v $(pwd):/files:Z md
or if you use bash:docker run --rm -it -v $(pwd)/files:/files md