-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
41 lines (40 loc) · 1.36 KB
/
docker-compose.yaml
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
# MediaWiki with MariaDB
#
# Access via "http://localhost:8080"
# (or "http://$(docker-machine ip):8080" if using docker-machine)
version: '3'
services:
mediawiki:
image: mediawiki:1.38
# restart: always
ports:
- 8080:80
links:
- database
build: .
volumes:
- images:/var/www/html/images
# After initial setup, download LocalSettings.php to the same directory as
# this yaml and uncomment the following line and use compose to restart
# the mediawiki service
# - ./LocalSettings.php:/var/www/html/LocalSettings.php
- ./languages/i18n/en.json:/var/www/html/languages/i18n/en.json
- ./Vector:/var/www/html/skins/Vector
- ./resources/assets:/var/www/html/resources/assets
# This key also defines the name of the database host used during setup instead of the default "localhost"
# https://phabricator.wikimedia.org/T254405
# https://stackoverflow.com/questions/57312109/mediawiki-docker-official-image-connection-refused-by-mysql
database:
image: mariadb
# restart: always
environment:
# @see https://phabricator.wikimedia.org/source/mediawiki/browse/master/includes/DefaultSettings.php
MYSQL_DATABASE: wiki
MYSQL_USER: admin
MYSQL_PASSWORD: notARealPassword
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
volumes:
- db:/var/lib/mysql
volumes:
images:
db: