Mark two FileRepo functions public
[mediawiki.git] / docker-compose.yml
blobfb92912051b49cb697135964fb4bf569283a2e0e
1 # Please see DEVELOPERS.md for help
3 # Contributions to this file are welcome but please note that this file is
4 # minimal by design, with the idea to make it easily extensible via
5 # docker-compose.override.yml. For help with doing that, please see
6 # DEVELOPERS.md
7 version: '3.7'
8 services:
9   mediawiki:
10     image: docker-registry.wikimedia.org/dev/stretch-php72-fpm-apache2-xdebug:0.3.0
11     ports:
12       - "${MW_DOCKER_PORT:-8080}:8080"
13     volumes:
14       - ./:/var/www/html:cached
15     environment:
16       COMPOSER_CACHE_DIR: '/var/www/html/cache/composer'
17       MW_SERVER: 'http://localhost:${MW_DOCKER_PORT:-8080}'
18       MW_SCRIPT_PATH: ''
19       MW_DBPATH: '/var/www/html/cache/sqlite'
20       MW_DBTYPE: 'sqlite'
21       MW_LANG: 'en'
22       MW_USER: 'admin'
23       MW_PASS: 'dockerpass'
24       MW_SITENAME: 'MediaWiki'
25       MW_LOG_DIR: /var/www/html/cache
26       XDEBUG_CONFIG: ${XDEBUG_CONFIG}