├── .dockerignore ├── .env ├── .gitignore ├── .travis.yml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── cron ├── Dockerfile └── conf │ └── container-entrypoint.d │ └── cron-entrypoint ├── db_dumps └── README.md ├── docker-compose.yml ├── docs └── img │ ├── phpstorm_add_remote_debug.gif │ ├── phpstorm_add_server.gif │ └── phpstorm_enable_debug.png ├── log └── .empty ├── moodledata └── README.md ├── nginx ├── Dockerfile └── conf │ └── container-entrypoint.d │ └── nginx-moodle-entrypoint ├── php-fpm ├── Dockerfile └── conf │ ├── custom-opcache.ini │ ├── custom-php.ini │ ├── custom-xdebug.ini │ └── php-fpm-xdebug-entrypoint.sh ├── postgres ├── Dockerfile └── conf │ └── container-entrypoint.d │ └── restore_dump └── test └── scripts ├── after-script.sh ├── install.sh └── script.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | /html 2 | /moodledata 3 | /db_dumps 4 | /log/xdebug.log 5 | /test 6 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/README.md -------------------------------------------------------------------------------- /cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/cron/Dockerfile -------------------------------------------------------------------------------- /cron/conf/container-entrypoint.d/cron-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/cron/conf/container-entrypoint.d/cron-entrypoint -------------------------------------------------------------------------------- /db_dumps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/db_dumps/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/img/phpstorm_add_remote_debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/docs/img/phpstorm_add_remote_debug.gif -------------------------------------------------------------------------------- /docs/img/phpstorm_add_server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/docs/img/phpstorm_add_server.gif -------------------------------------------------------------------------------- /docs/img/phpstorm_enable_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/docs/img/phpstorm_enable_debug.png -------------------------------------------------------------------------------- /log/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moodledata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/moodledata/README.md -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/conf/container-entrypoint.d/nginx-moodle-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/nginx/conf/container-entrypoint.d/nginx-moodle-entrypoint -------------------------------------------------------------------------------- /php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/php-fpm/Dockerfile -------------------------------------------------------------------------------- /php-fpm/conf/custom-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/php-fpm/conf/custom-opcache.ini -------------------------------------------------------------------------------- /php-fpm/conf/custom-php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/php-fpm/conf/custom-php.ini -------------------------------------------------------------------------------- /php-fpm/conf/custom-xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/php-fpm/conf/custom-xdebug.ini -------------------------------------------------------------------------------- /php-fpm/conf/php-fpm-xdebug-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/php-fpm/conf/php-fpm-xdebug-entrypoint.sh -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/conf/container-entrypoint.d/restore_dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/postgres/conf/container-entrypoint.d/restore_dump -------------------------------------------------------------------------------- /test/scripts/after-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/test/scripts/after-script.sh -------------------------------------------------------------------------------- /test/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/test/scripts/install.sh -------------------------------------------------------------------------------- /test/scripts/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobcespedes/docker-compose-moodle/HEAD/test/scripts/script.sh --------------------------------------------------------------------------------