├── .gitignore ├── README.md ├── compose.yaml ├── mariadb.service.yaml ├── nginx_proxy.conf └── postgres.service.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *local.yaml 3 | certs/ 4 | saml2/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabalin/moodle-dev-compose/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabalin/moodle-dev-compose/HEAD/compose.yaml -------------------------------------------------------------------------------- /mariadb.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabalin/moodle-dev-compose/HEAD/mariadb.service.yaml -------------------------------------------------------------------------------- /nginx_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabalin/moodle-dev-compose/HEAD/nginx_proxy.conf -------------------------------------------------------------------------------- /postgres.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabalin/moodle-dev-compose/HEAD/postgres.service.yaml --------------------------------------------------------------------------------