...
- Ports 8080 and 9080 must be exposed.
- Nuxeo data folder must be mounted. Be sure, that user that launches docker container has write permissions on this folder. Can be empty.
- Folder containing pi-nuxeo.xml and nuxeo.conf must be mounted. nuxeo.conf.template will be added here on the first container launch.
- 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 |
...