https://github.com/thenets/docker-mediawiki
The easiest way to install Mediawiki.
https://github.com/thenets/docker-mediawiki
Last synced: 10 months ago
JSON representation
The easiest way to install Mediawiki.
- Host: GitHub
- URL: https://github.com/thenets/docker-mediawiki
- Owner: thenets
- Created: 2018-01-16T10:55:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-26T22:58:49.000Z (over 6 years ago)
- Last Synced: 2025-08-13T08:54:20.525Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 5.19 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://hub.docker.com/r/thenets/mediawiki/) [](https://travis-ci.org/thenets/docker-mediawiki)
## Docker Compose
```yaml
version: "3"
services:
thenets-wiki:
image: thenets/mediawiki:latest
ports:
- 5555:80
volumes:
- /opt/volumes/mediawiki_data:/var/www/data:rw
restart: unless-stopped
thenets-wiki-parsoid:
image: thenets/parsoid:beta
ports:
- 5556:8000
restart: unless-stopped
environment:
PARSOID_DOMAIN_localhost: http://127.0.0.1:5555/api.php
PARSOID_NUM_WORKERS: 0
PARSOID_LOGGING_LEVEL: debug
PARSOID_DOMAIN_thenetswikiparsoid: http://127.0.0.1:5555/api.php
```