├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml └── web ├── CustomSettings.php ├── DockerSettings.php ├── Dockerfile ├── favicon.ico ├── logo.png ├── mediawiki.conf ├── php.ini └── run-apache.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /web/CustomSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/CustomSettings.php -------------------------------------------------------------------------------- /web/DockerSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/DockerSettings.php -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/logo.png -------------------------------------------------------------------------------- /web/mediawiki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/mediawiki.conf -------------------------------------------------------------------------------- /web/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/php.ini -------------------------------------------------------------------------------- /web/run-apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pastakhov/compose-mediawiki-ubuntu/HEAD/web/run-apache.sh --------------------------------------------------------------------------------