Install the App

To install the Jira Connector app, go to the GitHub repository of the Jira connector application

Refer to the following for a sample YAML file configuration.

Sample - yaml

version: "3.4"
services:
    qualys-client-service:
        image: qualys/qualys-client-for-jira-integration:1.3.0
        networks:
            - qualys-jira-connector
        volumes:
            - qualys-jira-volume:/opt/qualys/common/jiraconnector/ 
        environment:
            - SPRING_REDIS_HOST= 10.10.10.10
            - SPRING_REDIS_PORT=6379
            - SPRING_REDIS_USER=default
            - SPRING_REDIS_PASSWORD=JiraConnectorRedisDB
           
      
    redis-client-service:
        image: qualys/redis-test:1.2.0
        networks:
            - qualys-jira-connector
        ports:
          - 6379:6379
        volumes:
          - qualys-jira-volume:/opt/qualys/common/jiraconnector/     
    
    jira-client-service:
        image: qualys/jira-client-for-jira-integration:1.3.0
        networks:
            - qualys-jira-connector
        volumes:
            - qualys-jira-volume:/opt/qualys/common/jiraconnector/
        environment:
            - SPRING_REDIS_HOST= 10.10.10.10
            - SPRING_REDIS_PORT=6379
            - SPRING_REDIS_USER=default
            - SPRING_REDIS_PASSWORD=JiraConnectorRedisDB
 
        depends_on:
            - qualys-client-service
   
    
networks:
    qualys-jira-connector:
        
volumes:
  qualys-jira-volume:

In the above YAML, 10.10.10.10 is the IP of the host on which the Jira connector is running. If your Jira connector setup is on Windows, then, this IP should be of Windows Subsystem for Linux (WSL).

- Execute the following commands from your local directory:

  1. If you are using the docker-compose standalone installation, docker-compose up
  2. If you are using the docker-compose plugin, docker-compose up
  3. Spin up the container in detached mode using the parameter -d

    Refer to the following image to understand the command output.
    docker compose

  4. To verify the installation, execute the command, docker ps

 As part of the Docker compose behavior, your local directory name with the docker-compose.yml is prefixed onto the container, volume, and network name.

Now that you have installed the application let's see what the Jira connector application has introduced to your environment.

Related Link: 

Understand Application Services and Component