Docker

From LogicalDOC Community Wiki
Revision as of 16:14, 6 November 2018 by Car031 (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


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
docker pull wnameless/oracle-xe-11g
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=ldcle -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: [1]