Dockerfile for running a MediaWiki server via Apache-PHP. #krash https://pages.charlesreid1.com/d-mediawiki
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Charles Reid e6d86c5959 no php config (?) 3 years ago
attic Moving build/run for standalone Docker image to attic/ 6 years ago
charlesreid1-config@1505e72064 update charlesreid1-config submodule 4 years ago
docs add links to front matter, fix a link 6 years ago
mkdocs-material@b0c6890853 Update mkdocs-material for mkdocs 1.0 6 years ago
.gitignore updating gitignore 6 years ago
.gitmodules init version of documentation 6 years ago
Dockerfile no php config (?) 3 years ago
LICENSE Adding initial readme and license 6 years ago
README.md update readme 6 years ago
Skins.md add notes on how to upgrade skins 5 years ago
clean.sh add clean script 6 years ago
erase_mw_volume.sh Adding makefile instructions to readme 6 years ago
fix_LocalSettings.sh fix container name 3 years ago
fix_extensions_dir.sh update container name 3 years ago
fix_skins.sh update container name 3 years ago
make_mw_volume.sh Adding makefile instructions to readme 6 years ago
mkdocs.yml Update mkdocs.yml for mkdocs 1.0 6 years ago

README.md

d-mediawiki

This is the MediaWiki docker container used to run MediaWiki on charlesreid1.com/wiki.

This container also runs an Apache web server and a PHP engine.

You should not run this container by itself (see pod-charlesreid1).

Summary

This directory contains a Dockerfile that modifies the official MediaWiki docker container. Before launching the container, it specifies /var/www/html as a mounted volume, and it copies LocalSettings.php, the MediaWiki config file, from this repo into the container.

See d-mysql repo.

Also see pod-charlesreid1 for a working pod using this container.

Docker Compose

To use this container as part of a pod, as with the charlesreid1.com wiki, see pod-charlesreid1-wiki.

Troubleshooting

If you are seeing 404s on every page you try, it may be because your MediaWiki config file is set to redirect you to /wiki/Main_Page but your web server is not set up to handle it.

See this lin and the guide for apache and nginx.

Updating Settings

The LocalSettings.php file must be copied into the container, because we will end up bind-mounting the entire MediaWiki directory when the container is run and we can't bind-mount a file inside a bind-mounted directory.

Thus, to update LocalSettings.php, skins, or extensions, you will need to re-make the Docker container. Use the make rules to remake the Docker container:

make clean
make build
make run

Submodule

The submodule charlesreid1-config/ contains configuration files for both MediaWiki and Apache.

See the wiki/charlesreid1-config repo for details.

To clone the submodule when you clone the repo, include the --recursive flag:

git clone --recursive https://git.charlesreid1.com/docker/d-mediawiki.git

To check out the submodule after a shallow clone:

git submodule init
# or 
git submodule update --init 

To fetch changes to the submodule from the submodule's remote:

git submodule update --remote