Difference between revisions of "Docker"
From LogicalDOC Community Wiki
Jump to navigationJump to search (Created page with " == Running LogicalDOC Enterprise (latest release) in a Docker container with connection to a Oracle database == Running Oracle XE 11g (Express edition) in a Docker container...") |
|||
Line 1: | Line 1: | ||
− | == Running LogicalDOC Enterprise | + | == Running LogicalDOC Enterprise in a Docker container with connection to a Oracle database == |
Running Oracle XE 11g (Express edition) in a Docker container<br> | Running Oracle XE 11g (Express edition) in a Docker container<br> | ||
− | < | + | <pre> |
docker pull wnameless/oracle-xe-11g<br> | docker pull wnameless/oracle-xe-11g<br> | ||
docker run --name=oracle-ld -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g | docker run --name=oracle-ld -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g | ||
− | </ | + | </pre> |
Running LogicalDOC Enteprise (latest release) in a Docker container with connection to a Oracle 11g in container | Running LogicalDOC Enteprise (latest release) in a Docker container with connection to a Oracle 11g in container | ||
+ | <pre> | ||
docker pull logicaldoc/logicaldoc | docker pull logicaldoc/logicaldoc | ||
− | docker run --name= | + | docker run --name=ldocorc -p 8080:8080 --env LDOC_USERNO=YOUR_USERNO -e DB_ENGINE=oracle -e DB_HOST=oracle-ld -e DB_PORT=1521 -e DB_USER=system -e DB_PASSWORD=oracle -e DB_NAME=xe -e DB_INSTANCE=logicaldoc --link oracle-ld logicaldoc/logicaldoc |
+ | </pre> | ||
− | You should replace | + | You should replace '''YOUR_USERNO''' with your license code (Activation key) |
'''Note:''' you can also strip this parameter and add the license after installation (to avoid unnecessary activations) | '''Note:''' you can also strip this parameter and add the license after installation (to avoid unnecessary activations) | ||
− | For more information about LogicalDOC Docker image: | + | ---- |
+ | |||
+ | For more information about LogicalDOC Docker image: https://hub.docker.com/r/logicaldoc/logicaldoc |
Revision as of 16:22, 6 November 2018
Running LogicalDOC Enterprise in a Docker container with connection to a Oracle database
Running Oracle XE 11g (Express edition) in a Docker container
docker pull wnameless/oracle-xe-11g<br> docker run --name=oracle-ld -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g
Running LogicalDOC Enteprise (latest release) in a Docker container with connection to a Oracle 11g in container
docker pull logicaldoc/logicaldoc docker run --name=ldocorc -p 8080:8080 --env LDOC_USERNO=YOUR_USERNO -e DB_ENGINE=oracle -e DB_HOST=oracle-ld -e DB_PORT=1521 -e DB_USER=system -e DB_PASSWORD=oracle -e DB_NAME=xe -e DB_INSTANCE=logicaldoc --link oracle-ld logicaldoc/logicaldoc
You should replace YOUR_USERNO with your license code (Activation key) Note: you can also strip this parameter and add the license after installation (to avoid unnecessary activations)
For more information about LogicalDOC Docker image: https://hub.docker.com/r/logicaldoc/logicaldoc