...
| Code Block |
|---|
docker pull practiceinsight/dms_postgresql docker pull practiceinsight/dms_elasticsearch docker pull practiceinsight/dms_nuxeo_suite:1.89.90 |
Run DMS Docker containers
...
| 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 \
--link postgres:db --link elastic:es \
--name nuxeo practiceinsight/dms_nuxeo_suite:1.89.90 |
Example command to run with external servers linked, in this case be sure that these servers are configured in the nuxeo.conf and are accessible from the host machine:
| 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 \
--name nuxeo practiceinsight/dms_nuxeo_suite:1.89.90 |
Once all three containers are up and running, you should be able to get access to the Nuxeo with PI marketplace installed via:
...