Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Ports 8080 and 9080 must be exposed.
  2. Nuxeo data folder must be mounted. Be sure, that user that launches docker container has write permissions on this folder. Can be empty.
  3. Folder containing pi-nuxeo.xml and nuxeo.conf must be mounted. nuxeo.conf.template will be added here on the first container launch.
  4. Folder containing windows fonts must be mounted to /home/nuxeo/.windows_fonts

The following parameters must be set in the nuxeo.conf:

...

Code Block
docker run -p 8080:8080 -p 9080:9080 \
    -v /local_nuxeo_data_folder:/var/lib/nuxeo/data \
    -v /local_config_folder:/etc/nuxeo \
	-v /windows_fonts_folder:/home/nuxeo/.windows_fonts
    -v /etc/localtime:/etc/localtime:ro \
    --net=host \
    --name nuxeo practiceinsight/dms_nuxeo_suite:1.9.5

...