forked from addshore/mediawiki-docker-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.env
42 lines (37 loc) · 1.19 KB
/
default.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Database
#
# Value: 'mariadb' or 'mysql'
DB=mariadb
# Web server
#
# Value: 'apache' or 'nginx'
WEBSERVER=apache
# PHP Runtime version
#
# See <https://github.com/webdevops/Dockerfile/tree/master/docker/php#readme>
# for valid values.
#
# For example:
# - 'latest' (alias to ubuntu-18.04)
# - 'ubuntu-18.04' (Ubuntu 18 Bionic LTS, provides PHP 7.2).
# - 'ubuntu-16.04' (Ubuntu 16 Xenial LTS, provides PHP 7.0).
# - '7.4' (based on Debian 9 Stretch)
# - '7.3' (based on Debian 9 Stretch)
# - '7.2' (based on Debian 9 Stretch)
# - '7.1' (based on Debian 9 Stretch)
RUNTIMEVERSION=latest
# XDebug settings
#
# Value for XDEBUG_REMOTE_HOST, which in turn sets xdebug.remote_host
# IP address of your local dev machine (from Docker) for xdebug breakpoint communications.
# Docker for windows 18.03+ provides the hostname host.docker.internal that can be used
IDELOCALHOST=10.0.75.1
# Value for XDEBUG_REMOTE_AUTOSTART, which in turn sets xdebug.remote_autostart
XDEBUG_REMOTE_AUTOSTART=0
# MediaWiki install path
#
# Location of the MediaWiki repo on your machine
DOCKER_MW_PATH=/srv/dev/git/gerrit/mediawiki
# External port (on host system) for webserver proxy
# Port to serve everything up through
DOCKER_MW_PORT=8080