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 MySQL Database for Installation
This page requires advanced Docker and Docker-Compose 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:21.04-SP2
    ports:
      - 8080:8080
    environment:
      - DEBUG=true
      - TZ=Europe/Berlin
      - WAIT_HOSTS=hostaddress:1521
      - WAIT_HOSTS_TIMEOUT=120
      - CB_database_JDBC_Username=user
      - CB_database_JDBC_Password=pass
      - CB_database_JDBC_Driver=com.mysql.jdbc.Driver
      - CB_database_JDBC_ConnectionURL=jdbc:mysql://hostaddress:3306/<database>?autoReconnect=true&zeroDateTimeBehavior=convertToNull&emulateLocators=true&characterEncoding=UTF-8&useSSL=false
      - CB_database_JDBC_Timeout=120
    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: