You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Moodle PHP environment configured for Moodle development.
3
+
A Moodle PHP environment configured for Moodle development based on [Official PHP Images](https://hub.docker.com/_/php/).
4
4
5
-
PHP and Apache configured to serve /var/www/html/ based on [Official PHP Images](https://hub.docker.com/_/php/) with php extensions required for all Moodle database drivers and extensions.
The following command will expose the current working directory on port 8080:
15
+
```bash
16
+
$ docker run --name web0 -p 8080:80 -v $PWD:/var/www/html danpoltawski/moodle-php-apache:7.1
17
+
```
18
+
19
+
# Features
20
+
21
+
* Preconfigured with all php extensions required for Moodle development and all database drivers
22
+
* Serves wwroot configured at /var/www/html/
23
+
* Verified by [automated tests](https://travis-ci.org/danpoltawski/moodle-php-apache)
24
+
25
+
26
+
# See also
27
+
This container is part of a set of containers for Moodle development, see also:
28
+
*[docker-moodle](https://github.com/danpoltawski/docker-moodle) a docker-composer based set of tools to get Moodle development running with zero configuration
29
+
*[moodle-db-mssql](https://github.com/danpoltawski/moodle-db-mssql) Microsoft SQL Server for Linux configured for Moodle development
30
+
*[moodle-db-oracle](https://github.com/danpoltawski/moodle-db-oracle) Oracle XE configured for Moodle development
0 commit comments