Sign inSign up

binarybabel/xwiki

By binarybabel

•Updated over 8 years ago

Lastest XWiki Standalone The Advanced Open Source Enterprise Wiki

Image
0

50K+

binarybabel/xwiki repository overview

⁠XWiki [v10.6] Standalone – Docker Image

The Advanced Open Source Enterprise Wiki⁠

Latestver

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.

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:v10.6

Using docker-compose.yml

version: '2'
services:
  app:
    image: binarybabel/xwiki:v10.6
    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.

Tag summary

Content type

Image

Digest

Size

294.4 MB

Last updated

over 8 years ago

docker pull binarybabel/xwiki