Sign inSign up

r1co/docker-xwiki

By r1co

Updated over 8 years ago

Forked from hellyna. Updated to version 9.11.4. A basic working image for xwiki.

Image
0

1.6K

r1co/docker-xwiki repository overview

docker-xwiki

Forked from hellyna. Updated to version 9.11.4.

A basic working image for xwiki.

Usage

Create persistence

Persistent volumes are already defined by the image, so there is no need to explicitly define volumes using -v.

docker create \
  --name 'xwiki-persistence' \
  --entrypoint /bin/true \
  r1co/docker-xwiki:latest

Run!

Run with the above persistent container.

docker run -it --rm \
  --name 'xwiki' \
  --volumes-from 'xwiki-persistence' \
  -p 8080:8080 \
  r1co/docker-xwiki:latest

Try to point your browser to 'http://localhost:8080/' if you are running a local instance of docker!

Compose

version: '3.4'

services:
  xwiki:
    image: r1co/docker-xwiki
    ports:
      - 8080:8080
    volumes:
      - xwiki-data:/usr/local/tomcat/webapps/ROOT/WEB-INF
      - xwiki-data:/var/local/xwiki

volumes:
  xwiki-data:

Tag summary

Content type

Image

Digest

Size

403.5 MB

Last updated

over 8 years ago

docker pull r1co/docker-xwiki