You are not logged in. Click here to log in.

Codebeamer Application Lifecycle Management (ALM)
The SWS migration is currently in progress, and users may experience some temporary slowness.

Search In Project

Search inClear

Tags:  not added yet
Please check the following page in order you need to setup a MySQL server: Preparing Oracle Database for Installation
This page requires advanced Docker and Docker-Compase know how!


docker-compose.yml

# Copyright by Intland Software, https://www.intland.com
#
# All rights reserved.
#
# Please note that if you change this docker file, we do not take any responsibility and we are not liable for
# any damage caused through use of this image, be it indirect, special, incidental
# or consequential damages (including but not limited to damages for loss of business, loss of profits, interruption or the like).


version: '2.1'


services:
  codebeamer-app:
    image: intland/codebeamer:10.1-SP3
    environment:
      - DEBUG=true
      - TZ=Europe/Berlin
      - WAIT_HOSTS=hostaddress:1521
      - WAIT_HOSTS_TIMEOUT=120
      - "CB_database_JDBC_Username=username"
      - "CB_database_JDBC_Password=password"
      - "CB_database_JDBC_Driver=oracle.jdbc.driver.OracleDriver"
      - "CB_database_JDBC_ConnectionURL=jdbc:oracle:thin:@//hostaddress:1521/orcl"
    volumes:
      - codebeamer-app-repository-docs:/home/appuser/codebeamer/repository/docs
      - codebeamer-app-repository-search:/home/appuser/codebeamer/repository/search
      - codebeamer-app-repository-reports:/home/appuser/codebeamer/repository/reports
      - codebeamer-app-logs:/home/appuser/codebeamer/logs


volumes:
  codebeamer-app-repository-docs:
  codebeamer-app-repository-search:
  codebeamer-app-repository-reports:
  codebeamer-app-logs: