This repo contains Docker container to run the Parsoid application.
It is a part of Containerized Mediawiki install project.
PARSOID_DOMAIN_{domain}
defines uri and domain for parsoid service. The '{domain}' word should be the same asMW_REST_DOMAIN
parameter in MediaWiki web container. You can specify any number of such variables (by the number of domains for the service)PARSOID_NUM_WORKERS
defines the number of worker processes to the parsoid service. Set to0
to run everything in a single process without clustering. Usencpu
to run as many workers as there are CPU units.PARSOID_LOGGING_LEVEL
by defaultinfo
The environment variable PARSOID_DOMAIN_web=http://web/w/api.php
creates config contains:
mwApis:
-
uri: 'http://web/w/api.php'
domain: 'web'
The domain must be the same as mediawiki
$wgVirtualRestConfig['modules']['parsoid'] = array(
// URL to the Parsoid instance
// Use port 8142 if you use the Debian package
'url' => 'http://10.0.20.29:8081',
// Parsoid "domain", see below (optional)
'domain' => '10.0.20.29',
// Parsoid "prefix", see below (optional)
'prefix' => '10.0.20.29',
'forwardCookies' => false,
'restbaseCompat' => null
);
one wiki
docker run -it -p 8081:8000 -e PARSOID_API_1=http://xxx:8080/w/api.php -e PARSOID_DOMAIN_1=xxx loverszhaokai/parsoid:0.9.0
more wiki
docker run -it -p 8081:8000 -e PARSOID_API_1=http://xxx:8080/w/api.php -e PARSOID_DOMAIN_1=xxx -e PARSOID_API_2=http://yyy:8081/w/api.php -e PARSOID_DOMAIN_2=yyy loverszhaokai/parsoid:0.9.0