Last active
August 29, 2015 14:19
-
-
Save nestoru/2859b211d14d80f8a931 to your computer and use it in GitHub Desktop.
dockerized mediawiki 1.25 upgrade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dockerfile.partial | |
================== | |
# Omitting apache related configuration | |
RUN apt-get -y update | |
RUN apt-get -y install imagemagick | |
RUN mkdir -p /var/www/wiki | |
RUN cd /var/www \ | |
&& rm -fr wiki/* \ | |
&& git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git wiki \ | |
&& cd wiki \ | |
&& git checkout 965b70f | |
RUN git clone https://gerrit.wikimedia.org/r/p/mediawiki/vendor.git \ | |
&& cd /var/www/wiki/vendor \ | |
&& git submodule update --init --recursive . \ | |
&& cd /var/www/wiki/extensions/VisualEditor \ | |
&& git submodule update --init --recursive . \ | |
&& git checkout 970a20b \ | |
&& cd ../../skins/Vector \ | |
&& git submodule update --init --recursive . | |
RUN apt-get install -y python-software-properties software-properties-common python g++ make \ | |
&& add-apt-repository "deb http://parsoid.wmflabs.org:8080/debian wmf-production/" \ | |
&& apt-get update \ | |
&& apt-get install -y --force-yes parsoid | |
RUN add-apt-repository -y ppa:chris-lea/node.js \ | |
&& apt-get update \ | |
&& apt-get install -y nodejs=0.10* | |
RUN cd /usr/lib/parsoid/src/ && npm install | |
RUN curl -sS https://getcomposer.org/installer | php | |
ADD ./localsettingsParsoid.js /usr/lib/parsoid/src/api/localsettings.js | |
RUN npm install -g forever | |
ADD wikiSettings.php /var/www/wiki/LocalSettings.php | |
CMD cd /usr/lib/parsoid/src && forever start api/server.js && apache2 -DFOREGROUND | |
LocalSettings.php | |
================= | |
... | |
$wgScriptPath = ''; | |
$wgLogo = "/images/logo.png"; | |
$wgSharedUploadDirectory = "/var/www/wiki/images"; | |
$wgSMTP = array( | |
'host' => 'smtp.sample.com', | |
'IDHost' => 'sample.com', | |
'port' => '25', | |
'auth' => false | |
); | |
$wgDBserver = "$_ENV['TOOLS_MYSQL_PORT_3306_TCP_ADDR']"; | |
$wgDBport = 3306; | |
$wgDBname = 'wiki'; | |
$wgDBuser = 'dbuser'; | |
$wgDBpassword = 'dbpassword'; | |
$wgGroupPermissions['*']['edit'] = false; | |
// Latest version uses 'class' => 'JobQueueAggregatorNull' instead of 'class' => 'JobQueueAggregatorMemc' | |
$wgUpgradeKey = '7e95b9b39c83c613'; | |
require_once "$IP/skins/Vector/Vector.php"; | |
require_once "$IP/extensions/VisualEditor/VisualEditor.php"; | |
$wgDefaultUserOptions['visualeditor-enable'] = 1; | |
$wgVisualEditorParsoidURL = 'http://localhost:8000'; | |
$wgVisualEditorParsoidPrefix = 'wiki'; | |
... | |
localsettingsParsoid.js | |
======================= | |
/* | |
* This is a sample configuration file. | |
* | |
* Copy this file to localsettings.js and edit that file to fit your needs. | |
* | |
* Also see the file ParserService.js for more information. | |
*/ | |
exports.setup = function( parsoidConfig ) { | |
// The URL here is supposed to be your MediaWiki installation root. | |
// Note we use the 'wiki' identifier used in LocalSettings.php/wgVisualEditorParsoidPrefix. | |
// If parsoid serves requests for more than one wiki you need to add the corresponding configuration for those as well | |
parsoidConfig.setInterwiki( 'wiki', 'http://wiki.sample.com/api.php' ); | |
// Use the PHP preprocessor to expand templates via the MW API (default true) | |
//parsoidConfig.usePHPPreProcessor = true; | |
// Use selective serialization (default false) | |
parsoidConfig.useSelser = true; | |
// parsoid cache url | |
//parsoidConfig.parsoidCacheURI = 'http://localhost:8000/'; | |
//parsoidConfig.trace = true; | |
//parsoidConfig.traceFlags = 'selser,wts'; | |
//parsoidConfig.traceFlags = 'selser'; | |
//parsoidConfig.defaultAPIProxyURI = 'http://localhost/'; | |
}; | |
/* vim: set filetype=javascript noexpandtab ts=4 sw=4 cindent : */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment