Forked from hellyna. Updated to version 9.11.4. A basic working image for xwiki.
1.6K
Forked from hellyna. Updated to version 9.11.4.
A basic working image for xwiki.
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 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!
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:
Content type
Image
Digest
Size
403.5 MB
Last updated
over 8 years ago
docker pull r1co/docker-xwiki