2023-08-31 14:09:23 +00:00
|
|
|
# MediaWiki with MariaDB
|
|
|
|
#
|
|
|
|
# Access via "http://localhost:8080"
|
|
|
|
# (or "http://$(docker-machine ip):8080" if using docker-machine)
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
mediawiki:
|
|
|
|
image: mediawiki
|
|
|
|
# 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
|
2023-08-31 14:12:44 +00:00
|
|
|
# - ./LocalSettings.php:/var/www/html/LocalSettings.php
|
2023-08-31 14:09:23 +00:00
|
|
|
- ./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
|
2023-09-05 12:31:05 +00:00
|
|
|
MYSQL_PASSWORD: notARealPassword
|
2023-08-31 14:09:23 +00:00
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
|
|
|
|
volumes:
|
|
|
|
- db:/var/lib/mysql
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
images:
|
|
|
|
db:
|