Moved application.yml under cps-application 45/120145/5
authorRenu Kumari <renu.kumari@bell.ca>
Thu, 1 Apr 2021 14:44:31 +0000 (10:44 -0400)
committerRenu Kumari <renu.kumari@bell.ca>
Tue, 6 Apr 2021 19:35:21 +0000 (15:35 -0400)
Issue-ID: CPS-248
Signed-off-by: Renu Kumari <renu.kumari@bell.ca>
Change-Id: Ibfe68684784a9bd38e9e1e5d6a5e7909c4c11909

cps-application/src/main/resources/application.yml [moved from docker-compose/application.yml with 100% similarity]
docker-compose/README.md
docker-compose/docker-compose.yml

index e443bdf..3e9cd63 100644 (file)
@@ -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
index 4da7458..0cd4951 100644 (file)
@@ -52,12 +52,10 @@ services:
   cps-and-ncmp:
     container_name: cps-and-ncmp
     image: cps-and-ncmp:${VERSION}
-    volumes:
-      - "./application.yml:/app/resources/application.yml"
     ports:
       - "8883:8080"
     environment:
-      DB_HOST: ${DB_HOST}
+      DB_HOST: dbpostgresql
       DB_USERNAME: ${DB_USERNAME}
       DB_PASSWORD: ${DB_PASSWORD}
     restart: unless-stopped