diff options
author | Renu Kumari <renu.kumari@bell.ca> | 2021-04-01 10:44:31 -0400 |
---|---|---|
committer | Renu Kumari <renu.kumari@bell.ca> | 2021-04-06 15:35:21 -0400 |
commit | d138529fe66f39b17047091d7e54117845ba9b50 (patch) | |
tree | da8ab1c6b0f73353174ee9b7b672374de19d5290 /docker-compose/README.md | |
parent | f760afcbdeb6147ebd97ce43c055dce85e0bcfa0 (diff) |
Moved application.yml under cps-application
Issue-ID: CPS-248
Signed-off-by: Renu Kumari <renu.kumari@bell.ca>
Change-Id: Ibfe68684784a9bd38e9e1e5d6a5e7909c4c11909
Diffstat (limited to 'docker-compose/README.md')
-rw-r--r-- | docker-compose/README.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docker-compose/README.md b/docker-compose/README.md index e443bdf2eb..3e9cd63169 100644 --- a/docker-compose/README.md +++ b/docker-compose/README.md @@ -34,7 +34,7 @@ It starts both Postgres database and CPS services. 2. Execute following command from `docker-compose` folder: ```bash -VERSION=x.y.z-SNAPSHOT DB_HOST=dbpostgresql DB_USERNAME=cps DB_PASSWORD=cps docker-compose up -d +VERSION=x.y.z-SNAPSHOT DB_USERNAME=cps DB_PASSWORD=cps docker-compose up -d ``` ## Running or debugging Java built code @@ -56,8 +56,7 @@ Following command starts the application using JAR file: ```bash DB_HOST=localhost DB_USERNAME=cps DB_PASSWORD=cps \ - java -classpath cps-application/target/cps-application-x.y.z-SNAPSHOT.jar:docker-compose \ - org.springframework.boot.loader.JarLauncher + java -jar cps-application/target/cps-application-x.y.z-SNAPSHOT.jar ``` ### Running from IntelliJ IDE @@ -66,7 +65,6 @@ Here are the steps to run or debug the application from Intellij: 1. Enable the desired maven profile form Maven Tool Window 2. Run a configuration from `Run -> Edit configurations` with following settings: - * `Working directory`: docker-compose folder, e.g. `$ProjectFileDir$/docker-compose` * `Environment variables`: `DB_HOST=localhost;DB_USERNAME=cps;DB_PASSWORD=cps` ## Accessing services |