-
Vincent Massol authored
[Misc] Upgrade MariaDB version to 11.1 (latest stable) in our documentation + docker compose example
Vincent Massol authored[Misc] Upgrade MariaDB version to 11.1 (latest stable) in our documentation + docker compose example
What is XWiki
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. XWiki is an enterprise wiki. It includes WYSIWYG editing, OpenDocument based document import/export, semantic annotations and tagging, and advanced permissions management.
As an application wiki, XWiki allows for the storing of structured data and the execution of server side script within the wiki interface. Scripting languages including Velocity, Groovy, Python, Ruby and PHP can be written directly into wiki pages using wiki macros. User-created data structures can be defined in wiki documents and instances of those structures can be attached to wiki documents, stored in a database, and queried using either Hibernate query language or XWiki's own query language.
XWiki.org's extension wiki is home to XWiki extensions ranging from code snippets which can be pasted into wiki pages to loadable core modules. Many of XWiki Enterprise's features are provided by extensions which are bundled with it.
Table of contents
- Introduction
- How to use this image
- Upgrading XWiki
- Troubleshooting
- Details for the xwiki image
- For Maintainers
- License
- Support
- Contribute
- Credits
Introduction
The goal is to provide a production-ready XWiki system running in Docker. This is why:
- The OS is based on Debian and not on some smaller-footprint distribution like Alpine
- Several containers are used with Docker Compose: one for the DB and another for XWiki + Servlet container. This allows the ability to run them on different machines for example.
How to use this image
You should first install Docker on your machine.
Then there are several options:
- Pull the xwiki image from DockerHub.
- Get the sources of this project and build them.
Pulling an existing image
You need to run 2 containers:
- One for the XWiki image
- One for the database image to which XWiki connects to
Using docker run
Start by creating a dedicated docker network:
docker network create -d bridge xwiki-nw