Skip to content

Files

Latest commit

15408db · Sep 28, 2016

History

History
This branch is 1610 commits behind vimagick/dockerfiles:master.

moodle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 28, 2016
Dec 28, 2015
Dec 28, 2015

moodle

Moodle is a learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalised learning environments.

docker-compose.yml

moodle:
  image: vimagick/moodle
  ports:
    - "8000:80"
  links:
    - mysql
  volumes:
    - ./moodledata:/var/www/moodledata
  restart: always

mysql:
  image: mysql
  environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=moodle
  restart: always

up and running

$ cd ~/fig/moodle/
$ mkdir -p moodledata
$ chmod 777 moodledata
$ docker-compose up -d