Skip to content

binarybabel/docker-xwiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

XWiki [latest] Standalone – Docker Image

The Advanced Open Source Enterprise Wiki

Build Status GitHub release

This image is rebuilt automatically when new versions of XWiki are released, through the use of webhooks provided by the Latestver dependency tracking tool, a BinaryBabel OSS Project.

Pulling a specific tag of this image is recommended, which will ensure you are not unexpectedly updated to a newer version of XWiki. Check the Docker Tags or Github Releases for available versions.

Recommended Audience

This image is aimed at small-scale deployments, perfect for teams or private usage. It uses the standalone edition of XWiki and an embedded HSQLDB database saved to the connected data volume. See the XWiki documentation for other deployment options.

Installation / Upgrade Notes

It's highly recommended that first-time setup, or any version upgrades, which will trigger XWiki's setup wizard are performed by connecting directly to the docker instance. Front-end proxies and load-balancers can make the setup interface unusable.

Usage

By default the application will be available from http://localhost:8080

Running Directly

# docker run -p 8080:8080 -v $(pwd):/xwiki-data binarybabel/xwiki:latest

Using docker-compose.yml

version: '2'
services:
  app:
    image: binarybabel/xwiki:latest
    volumes:
      - .:/xwiki-data
    ports:
      - "8080:8080"

# docker-compose up

Configuration

Environmental Variables

  • FS_ATTACHMENTS
    • default: '1' (YES) - store attachments as files in data volume (instead of database)
  • JAVA_XMX
    • default: '1024m' - amount of memory to allocate to Java

Volumes

  • /xwiki-data
    • XWiki database, attachments, logs, extensions, etc.

Security

Encryption keys for login cookies are generated automatically on container startup. User browser sessions will expire when a container is updated or otherwise recreated.

About

XWiki Docker Image - Automatic Build

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages