Revert "Fix markdown formatting"

This reverts commit 61c1444746.
This commit is contained in:
David Barratt 2017-08-07 19:52:05 -04:00
parent 61c1444746
commit 3fba089b2a
1 changed files with 12 additions and 18 deletions

View File

@ -1,5 +1,4 @@
What is MediaWiki?
==================
# What is MediaWiki?
MediaWiki is free and open-source wiki software. Originally developed by Magnus Manske and improved by Lee Daniel Crocker, it runs on many websites, including Wikipedia, Wiktionary and Wikimedia Commons. It is written in the PHP programming language and stores the contents into a database. Like WordPress, which is based on a similar licensing and architecture, it has become the dominant software in its category.
@ -7,8 +6,7 @@ MediaWiki is free and open-source wiki software. Originally developed by Magnus
%%LOGO%%
How to use this image
=====================
# How to use this image
The basic pattern for starting a `%%REPO%%` instance is:
@ -28,19 +26,17 @@ There are multiple database types supported by this image, most easily used via
When first accessing the webserver provided by this image, it will go through a brief setup process. The details provided below are specifically for the "Set up database" step of that configuration process.
MySQL
-----
## MySQL
```console
$ docker run --name some-%%REPO%% --link some-mysql:mysql -d %%REPO%%
```
- Database type: `MySQL, MariaDB, or equivalent`
- Database name/username/password: `<details for accessing your MySQL instance>` (`MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_DATABASE`; see environment variables in the description for [`mariadb`](https://registry.hub.docker.com/_/mariadb/)\)
- Database name/username/password: `<details for accessing your MySQL instance>` (`MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_DATABASE`; see environment variables in the description for [`mariadb`](https://registry.hub.docker.com/_/mariadb/))
- ADVANCED OPTIONS; Database host: `mysql` (for using the `/etc/hosts` entry added by `--link` to access the linked container's MySQL instance)
Volumes
-------
## Volumes
By default, this image does not include any volumes.
@ -50,13 +46,11 @@ The paths `/var/www/html/images` and `/var/www/html/LocalSettings.php` are thing
$ docker run --rm %%REPO%% tar -cC /var/www/html/sites . | tar -xC /path/on/host/sites
```
%%STACK%%
---------
## %%STACK%%
Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080`, `http://localhost:8080`, or `http://host-ip:8080` (as appropriate).
Adding additional libraries / extensions
----------------------------------------
## Adding additional libraries / extensions
This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size.